diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2024-01-03 10:59:04 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-03 10:59:04 -0500 |
| commit | fabe2b3fb3fb5a849c5220298acabbdc9ad30f3b (patch) | |
| tree | aeec4e2e98eb8a8ad122ebb59346b1028bf92b69 /engine/gfx | |
| parent | Use BANK("Trainer Sight") to apply to all four possible functions in the "Tra... (diff) | |
| download | pokeyellow-fabe2b3fb3fb5a849c5220298acabbdc9ad30f3b.tar.gz pokeyellow-fabe2b3fb3fb5a849c5220298acabbdc9ad30f3b.tar.xz pokeyellow-fabe2b3fb3fb5a849c5220298acabbdc9ad30f3b.zip | |
Update to RGBDS 0.7.0 (#447)
Diffstat (limited to 'engine/gfx')
| -rw-r--r-- | engine/gfx/oam_dma.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/gfx/oam_dma.asm b/engine/gfx/oam_dma.asm index 11e52694..725c3dca 100644 --- a/engine/gfx/oam_dma.asm +++ b/engine/gfx/oam_dma.asm @@ -2,7 +2,7 @@ WriteDMACodeToHRAM:: ; Since no other memory is available during OAM DMA, ; DMARoutine is copied to HRAM and executed there. ld c, LOW(hDMARoutine) - ld b, DMARoutineEnd - DMARoutine + ld b, DMARoutine.End - DMARoutine ld hl, DMARoutine .copy ld a, [hli] @@ -25,4 +25,4 @@ hDMARoutine:: jr nz, .wait ret ENDL -DMARoutineEnd: +.End: |
