diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-02-01 12:40:58 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-02-01 13:03:21 -0500 |
commit | fcfe77bc3db73afd2001c21ec9cc1cfb1beca20e (patch) | |
tree | 2fe20a614851089b0e22cc2dc0164ee40447ebb6 /maps/WillsRoom.asm | |
parent | 936a170e0da19cb5bb2ccc325a43a28690230098 (diff) |
Meaningful scene constant names
(Two common patterns: 0=default event and 1=nothing; and 0=nothing and 1=some event)
Diffstat (limited to 'maps/WillsRoom.asm')
-rw-r--r-- | maps/WillsRoom.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/maps/WillsRoom.asm b/maps/WillsRoom.asm index 83a72c37d..96d1e5287 100644 --- a/maps/WillsRoom.asm +++ b/maps/WillsRoom.asm @@ -3,8 +3,8 @@ WillsRoom_MapScripts: db 2 ; scene scripts - scene_script .LockDoor ; SCENE_WILLSROOM_0 - scene_script .DummyScene ; SCENE_WILLSROOM_1 + scene_script .LockDoor ; SCENE_DEFAULT + scene_script .DummyScene ; SCENE_WILLSROOM_NOTHING db 1 ; callbacks callback MAPCALLBACK_TILES, .WillsRoomDoors @@ -35,7 +35,7 @@ WillsRoom_MapScripts: changeblock 4, 14, $2a ; wall reloadmappart closetext - setscene SCENE_WILLSROOM_1 + setscene SCENE_WILLSROOM_NOTHING setevent EVENT_WILLS_ROOM_ENTRANCE_CLOSED waitsfx end |