diff options
author | dannye <corrnondacqb@yahoo.com> | 2016-07-18 01:17:03 -0500 |
---|---|---|
committer | dannye <corrnondacqb@yahoo.com> | 2016-07-18 01:17:03 -0500 |
commit | 80bae03975a84dadf080c79f52216866dd410cf8 (patch) | |
tree | 282a30407e6d6f9e8aa6e665ebf0e826ccc79569 /engine/slot_machine.asm | |
parent | a51037eeeedb03e29d8675626018cf02750882fa (diff) |
Clean up text commands
Diffstat (limited to 'engine/slot_machine.asm')
-rwxr-xr-x | engine/slot_machine.asm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engine/slot_machine.asm b/engine/slot_machine.asm index 733cc29c..0a8b5cb9 100755 --- a/engine/slot_machine.asm +++ b/engine/slot_machine.asm @@ -610,7 +610,8 @@ SlotReward300Func: YeahText: TX_FAR _YeahText - db $0a, "@" + TX_DELAY + db "@" SlotMachine_PrintWinningSymbol: ; prints winning symbol and down arrow in text box @@ -627,7 +628,7 @@ SlotMachine_PrintWinningSymbol: inc a ld [hl], a coord hl, 18, 16 - ld [hl], $ee ; down arrow + ld [hl], "▼" ret SlotMachine_SubtractBetFromPlayerCoins: |