aboutsummaryrefslogtreecommitdiff
path: root/src/over.s
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-03-24 00:34:26 +0100
committerMiquel Sabaté Solà <mssola@mssola.com>2026-03-24 00:34:26 +0100
commitb779e7dc3d44f7b9d90aeeee91ed36cf57d65e95 (patch)
tree1f94f26d5781c93997fd4a052e1b6177ce3874a3 /src/over.s
parent0c9b0ad7938e2ba7e994574b4947e25c82440b8c (diff)
downloadjetpac.nes-b779e7dc3d44f7b9d90aeeee91ed36cf57d65e95.tar.gz
jetpac.nes-b779e7dc3d44f7b9d90aeeee91ed36cf57d65e95.zip
Use the 'nmi_' prefix for NMI-only functions
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'src/over.s')
-rw-r--r--src/over.s6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/over.s b/src/over.s
index ab13d76..6ec4745 100644
--- a/src/over.s
+++ b/src/over.s
@@ -67,7 +67,7 @@
rts
@do_render:
- jsr Over::clear_out_screen
+ jsr Over::nmi_clear_out_screen
lda Globals::zp_flags
and #$03
cmp #2
@@ -97,7 +97,7 @@
.endproc
;; Remove all platforms and the ground.
- .proc clear_out_screen
+ .proc nmi_clear_out_screen
;; Remove left platform.
bit PPU::m_status
ldx #$29
@@ -153,7 +153,7 @@
bne @clear_ground_loop
;; Clear the shuttle from the background.
- jsr Background::clear_shuttle
+ jsr Background::nmi_clear_shuttle
rts
.endproc