diff options
author | obskyr <powpowd@gmail.com> | 2018-07-03 04:59:38 +0200 |
---|---|---|
committer | obskyr <powpowd@gmail.com> | 2018-07-03 04:59:38 +0200 |
commit | e596d41c1790bb9b77c9e941aab5eb4b1305dbb5 (patch) | |
tree | 57b6381363f3126a026b9e39aae9ac5630936293 /engine | |
parent | 382fd4b50e27cea7e0f97839363235ea2eac14fa (diff) |
A few small formatting fixes
Diffstat (limited to 'engine')
-rw-r--r-- | engine/overworld/player_movement.asm | 4 | ||||
-rw-r--r-- | engine/palettes.asm | 4 | ||||
-rw-r--r-- | engine/title.asm | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/engine/overworld/player_movement.asm b/engine/overworld/player_movement.asm index 0954dc2..3c8cf7c 100644 --- a/engine/overworld/player_movement.asm +++ b/engine/overworld/player_movement.asm @@ -1,6 +1,6 @@ INCLUDE "constants.asm" -SECTION "Player Movement", ROMX[$4000], BANK[$3] +SECTION "Player Movement", ROMX[$4000], BANK[$03] OverworldMovementCheck:: ; 03:4000 jp _OverworldMovementCheck @@ -1080,7 +1080,7 @@ GetCollisionType:: pop de ret -SECTION "Rest of Player Movement", ROMX[$4764], BANK[$3] +SECTION "Rest of Player Movement", ROMX[$4764], BANK[$03] _UnusedReturnFalse:: ; 03:4764 xor a diff --git a/engine/palettes.asm b/engine/palettes.asm index d1f93c0..67ed9fe 100644 --- a/engine/palettes.asm +++ b/engine/palettes.asm @@ -1,6 +1,6 @@ INCLUDE "constants.asm" -SECTION "Overworld fade", ROMX[$433e],BANK[$23] +SECTION "Overworld fade", ROMX[$433e], BANK[$23] OverworldFadeIn:: ; 23:433e ld c, 0 @@ -18,7 +18,7 @@ OverworldFadeOut:: ; 23:4349 ; TODO: merge this -SECTION "Palette fading, part 2?", ROMX[$43d1],BANK[$23] +SECTION "Palette fading, part 2?", ROMX[$43d1], BANK[$23] ApplyPalettesAtHL:: ; 23:43d1 push hl diff --git a/engine/title.asm b/engine/title.asm index 7f9d707..d7ae3a7 100644 --- a/engine/title.asm +++ b/engine/title.asm @@ -630,9 +630,9 @@ SetTitleGfxNext:: ret if DEBUG -SECTION "Title screen TEMPORARY", ROMX[$62A5],BANK[1] ; TODO: merge this with the main section above +SECTION "Title screen TEMPORARY", ROMX[$62A5], BANK[$01] ; TODO: merge this with the main section above else -SECTION "Title screen TEMPORARY", ROMX[$62A2],BANK[1] ; TODO: merge this with the main section above +SECTION "Title screen TEMPORARY", ROMX[$62A2], BANK[$01] ; TODO: merge this with the main section above endc |