diff options
author | pikalaxalt <PikalaxALT@gmail.com> | 2016-05-10 12:31:49 -0400 |
---|---|---|
committer | pikalaxalt <PikalaxALT@gmail.com> | 2016-05-10 12:31:49 -0400 |
commit | ae36ef2c7fb722b7480d73c7a95a5d1e2ece7831 (patch) | |
tree | c6cfbfa143807b10f3baf86eeed3ff6275237c72 /engine/slot_machine.asm | |
parent | e95d42e0af1921f516c1fd4269024aa3f586514f (diff) |
Labeled every function in ROM0 that's referenced in the source
Diffstat (limited to 'engine/slot_machine.asm')
-rwxr-xr-x | engine/slot_machine.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/slot_machine.asm b/engine/slot_machine.asm index c31dbd2b3..626989999 100755 --- a/engine/slot_machine.asm +++ b/engine/slot_machine.asm @@ -201,9 +201,9 @@ Function9282c: ; 9282c ld a, [hl] xor $20 ld [hli], a -rept 3 inc hl -endr + inc hl + inc hl dec c jr nz, .loop ret @@ -686,9 +686,9 @@ Slots_SpinReels: ; 92b0f (24:6b0f) ld a, [hl] add d ld [hli], a -rept 3 inc hl -endr + inc hl + inc hl dec e jr nz, .loop ret @@ -1844,9 +1844,9 @@ SlotPayoutText: ; 93158 (24:7158) ld e, a ld d, 0 ld hl, .PayoutStrings -rept 3 add hl, de -endr + add hl, de + add hl, de ld de, StringBuffer2 ld bc, 4 call CopyBytes |