diff options
author | xCrystal <rgr.crystal@gmail.com> | 2017-12-29 16:19:51 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2017-12-29 16:19:51 +0100 |
commit | ee5bf7164038ad9f0c988de8f9c35c1c8911acfc (patch) | |
tree | 25c2f1f76c7cf9cf9302b8af8d1eeed061ebeb2f /engine/slot_machine.asm | |
parent | def3b6049387a6d2afab66780f7f09dbb61d6166 (diff) |
Consistently name unknown fields in macros/wram as Fieldxx
Diffstat (limited to 'engine/slot_machine.asm')
-rwxr-xr-x | engine/slot_machine.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/slot_machine.asm b/engine/slot_machine.asm index aaf65c83a..67e583291 100755 --- a/engine/slot_machine.asm +++ b/engine/slot_machine.asm @@ -1326,14 +1326,14 @@ ReelAction_CheckDropReel: ; 92e10 ld hl, wReel1ReelAction - wReel1 add hl, bc inc [hl] ; REEL_ACTION_WAIT_DROP_REEL - ld hl, wReel1Slot0b - wReel1 + ld hl, wReel1Field0b - wReel1 add hl, bc ld [hl], 32 ld hl, wReel1SpinRate - wReel1 add hl, bc ld [hl], 0 ReelAction_WaitDropReel: ; 92e31 - ld hl, wReel1Slot0b - wReel1 + ld hl, wReel1Field0b - wReel1 add hl, bc ld a, [hl] and a |