diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-31 23:16:51 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-31 23:16:51 -0500 |
commit | a17623d96b25d6733846f5774fd10bb317862b43 (patch) | |
tree | fe13b09b13f1eb102c31dd31ce0cc8d0c2d6ae02 /maps/VictoryRoadGate.asm | |
parent | 7d6e82ef1c8c3eccdc630e85af1d687eaa612ad6 (diff) |
Add scene ID constants (TODO: meaningful names)
Diffstat (limited to 'maps/VictoryRoadGate.asm')
-rw-r--r-- | maps/VictoryRoadGate.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/maps/VictoryRoadGate.asm b/maps/VictoryRoadGate.asm index 4fdbfe5eb..5ddef4221 100644 --- a/maps/VictoryRoadGate.asm +++ b/maps/VictoryRoadGate.asm @@ -5,8 +5,8 @@ VictoryRoadGate_MapScripts: db 2 ; scene scripts - scene_script .DummyScene0 - scene_script .DummyScene1 + scene_script .DummyScene0 ; SCENE_VICTORYROADGATE_0 + scene_script .DummyScene1 ; SCENE_VICTORYROADGATE_1 db 0 ; callbacks @@ -38,7 +38,7 @@ VictoryRoadGateBadgeCheckScript: writetext VictoryRoadGateEightBadgesText waitbutton closetext - setscene 1 + setscene SCENE_VICTORYROADGATE_1 end VictoryRoadGateLeftBlackBeltScript: @@ -109,7 +109,7 @@ VictoryRoadGate_MapEvents: warp_event 2, 7, 2, ROUTE_28 db 1 ; coord events - coord_event 10, 11, 0, VictoryRoadGateBadgeCheckScene + coord_event 10, 11, SCENE_VICTORYROADGATE_0, VictoryRoadGateBadgeCheckScene db 0 ; bg events |