diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-22 10:54:53 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-22 10:54:53 -0400 |
commit | b9a74ff777ea9418a94616c3b5a26b932a66981c (patch) | |
tree | c9b2080d016de5b3407c8269fb2efc5aa9e0ff11 /engine/games | |
parent | ae4fe08084f3c3c5775bc286bcc630f2c20af083 (diff) |
Identify more sprite graphics and map object labels, and have consistent anonymous jumptable labels
Diffstat (limited to 'engine/games')
-rw-r--r-- | engine/games/card_flip.asm | 6 | ||||
-rw-r--r-- | engine/games/dummy_game.asm | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/engine/games/card_flip.asm b/engine/games/card_flip.asm index 93929fbde..1244ca081 100644 --- a/engine/games/card_flip.asm +++ b/engine/games/card_flip.asm @@ -3,11 +3,11 @@ CARDFLIP_LIGHT_ON EQU "♀" ; $f5 CARDFLIP_DECK_SIZE EQU 4 * 6 -; two labels below called from inside ./dummy_game.asm -Unknown_e00ed: +DummyGameGFX: ; Graphics for an unused Game Corner ; game were meant to be here. -ret_e00ed: + +UnusedCursor_InterpretJoypad_AnimateCursor: ret _CardFlip: diff --git a/engine/games/dummy_game.asm b/engine/games/dummy_game.asm index 940204555..e4bb2d060 100644 --- a/engine/games/dummy_game.asm +++ b/engine/games/dummy_game.asm @@ -14,10 +14,10 @@ _DummyGame: ld hl, DummyGameLZ ld de, vTiles2 tile $00 call Decompress - ld hl, Unknown_e00ed + ld hl, DummyGameGFX ld de, vTiles0 tile $00 ld bc, 4 tiles - ld a, BANK(Unknown_e00ed) + ld a, BANK(DummyGameGFX) call FarCopyBytes ld a, $8 ld hl, wc300 @@ -77,7 +77,7 @@ _DummyGame: ret .ResetBoard: - call ret_e00ed + call UnusedCursor_InterpretJoypad_AnimateCursor jr nc, .proceed ld hl, wJumptableIndex set 7, [hl] @@ -232,7 +232,7 @@ endr ld hl, wJumptableIndex inc [hl] .AskPlayAgain: - call ret_e00ed + call UnusedCursor_InterpretJoypad_AnimateCursor jr nc, .restart ld hl, wJumptableIndex set 7, [hl] |