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/VictoryRoadGate.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/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 5ddef4221..51badeb6b 100644 --- a/maps/VictoryRoadGate.asm +++ b/maps/VictoryRoadGate.asm @@ -5,8 +5,8 @@ VictoryRoadGate_MapScripts: db 2 ; scene scripts - scene_script .DummyScene0 ; SCENE_VICTORYROADGATE_0 - scene_script .DummyScene1 ; SCENE_VICTORYROADGATE_1 + scene_script .DummyScene0 ; SCENE_DEFAULT + scene_script .DummyScene1 ; SCENE_VICTORYROADGATE_NOTHING db 0 ; callbacks @@ -38,7 +38,7 @@ VictoryRoadGateBadgeCheckScript: writetext VictoryRoadGateEightBadgesText waitbutton closetext - setscene SCENE_VICTORYROADGATE_1 + setscene SCENE_VICTORYROADGATE_NOTHING end VictoryRoadGateLeftBlackBeltScript: @@ -109,7 +109,7 @@ VictoryRoadGate_MapEvents: warp_event 2, 7, 2, ROUTE_28 db 1 ; coord events - coord_event 10, 11, SCENE_VICTORYROADGATE_0, VictoryRoadGateBadgeCheckScene + coord_event 10, 11, SCENE_DEFAULT, VictoryRoadGateBadgeCheckScene db 0 ; bg events |
