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 /include | |
| 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 'include')
| -rw-r--r-- | include/globals.s | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/globals.s b/include/globals.s index 1861e07..a958778 100644 --- a/include/globals.s +++ b/include/globals.s @@ -56,4 +56,15 @@ ;; | 1 | player's 1 state | 0: over; 1: alive | ;; | 0 | active | 0: player 1; 1: player 2 | zp_multiplayer = $26 + + ;; Extra bitmap that was needed beyond the ones that we already have. Yeah, + ;; I know, bad planning from my side, but now it's a bit complex to untangle + ;; variables like 'Globals::zp_flags'. + ;; + ;; | Bit | Short name | Meaning | + ;; |-----+------------------+----------------------------------| + ;; | 7 | score | The score has been updated. | + ;; | 6 | high | The high score has been updated. | + ;; | 5-0 | - | Unused. | + zp_extra_flags = $27 .endscope |
