diff options
author | entrpntr <entrpntr@gmail.com> | 2020-06-05 17:34:02 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-06-05 17:51:21 -0400 |
commit | 13eb43eb1b14d227b73ccfc6ba000ff982189425 (patch) | |
tree | be469ba8095bea88f2c74a7ad1cfbe10814f392e /engine | |
parent | 1429f9874c4f4a39c03679bfc2a57221f2af2161 (diff) |
Minor cleanups, add handling for gfx.
Diffstat (limited to 'engine')
-rwxr-xr-x | engine/events/diploma.asm | 5 | ||||
-rwxr-xr-x | engine/games/card_flip.asm | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/engine/events/diploma.asm b/engine/events/diploma.asm index d55604e5..22cbcdd7 100755 --- a/engine/events/diploma.asm +++ b/engine/events/diploma.asm @@ -1,3 +1,8 @@ +ret_e0000: + ret + + ret ; unused + _Diploma: call PlaceDiplomaOnScreen call WaitPressAorB_BlinkCursor diff --git a/engine/games/card_flip.asm b/engine/games/card_flip.asm index 41c7e141..82faf692 100755 --- a/engine/games/card_flip.asm +++ b/engine/games/card_flip.asm @@ -7,7 +7,7 @@ CARDFLIP_DECK_SIZE EQU 4 * 6 Unknown_e0908: ; Graphics for an unused Game Corner ; game were meant to be here. -ret_e0908:: +ret_e0908: ret _CardFlip: @@ -495,7 +495,7 @@ CardFlip_UpdateCoinBalanceDisplay: CardFlip_PrintCoinBalance: hlcoord 9, 15 - ld bc, $0109 + lb bc, 1, 9 call Textbox hlcoord 10, 16 ld de, .CoinStr |