diff options
| author | yenatch <yenatch@gmail.com> | 2014-05-29 01:31:46 -0700 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2014-05-29 01:31:46 -0700 |
| commit | da0a72cdbf45fa624b2d1151afe94a98d7da2ae0 (patch) | |
| tree | abf5310b19ccf0fb7195158abbc4792dc995253b /engine/slot_machine.asm | |
| parent | VRAM constants. (diff) | |
| download | pokeyellow-da0a72cdbf45fa624b2d1151afe94a98d7da2ae0.tar.gz pokeyellow-da0a72cdbf45fa624b2d1151afe94a98d7da2ae0.tar.xz pokeyellow-da0a72cdbf45fa624b2d1151afe94a98d7da2ae0.zip | |
Use VRAM constants where applicable.
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 ec94dd28..68a15a18 100755 --- a/engine/slot_machine.asm +++ b/engine/slot_machine.asm @@ -824,18 +824,18 @@ SlotMachine_37882: ; 37882 (d:7882) LoadSlotMachineTiles: ; 378a8 (d:78a8) call DisableLCD ld hl, SlotMachineTiles2 - ld de, $8000 - ld bc, $01c0 + ld de, vChars0 + ld bc, $1c0 ld a, BANK(SlotMachineTiles2) call FarCopyData2 ld hl, SlotMachineTiles1 - ld de, $9000 - ld bc, $0250 + ld de, vChars2 + ld bc, $250 ld a, BANK(SlotMachineTiles1) call FarCopyData2 ld hl, SlotMachineTiles2 - ld de, $9250 - ld bc, $01c0 + ld de, vChars2 + $250 + ld bc, $1c0 ld a, BANK(SlotMachineTiles2) call FarCopyData2 ld hl, SlotMachineMap |
