diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-25 22:40:48 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-25 22:40:48 +0100 |
| commit | 63ef73de3bdd698ab250407354e24a6de7c9ef20 (patch) | |
| tree | 5caa3f3a37ea32af6f0d4e0ae42ad3fa2b455c55 /src/interrupts.s | |
| parent | ccf320971efe9b11f7b7722b2ee2642a10303203 (diff) | |
| download | jetpac.nes-63ef73de3bdd698ab250407354e24a6de7c9ef20.tar.gz jetpac.nes-63ef73de3bdd698ab250407354e24a6de7c9ef20.zip | |
Update scores on screen
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'src/interrupts.s')
| -rw-r--r-- | src/interrupts.s | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/interrupts.s b/src/interrupts.s index 9c2cb45..7026223 100644 --- a/src/interrupts.s +++ b/src/interrupts.s @@ -27,6 +27,12 @@ lda #$02 sta OAM::m_dma + ;; Should scores be updated? + bit Globals::zp_extra_flags + bpl @check_pause + jsr Score::nmi_update_scores + +@check_pause: ;; Toggle pause message from the HUD. bit Driver::zp_flags bvc @increase_rand |
