diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-16 22:04:19 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-16 22:04:19 +0100 |
| commit | 3b238d047207441a9ed4c3ae503f323e04b62bef (patch) | |
| tree | d32acd3182cfd409f34a3c6dc886a5b9759336fa /src/jetpac.s | |
| parent | f6e0cca4031ebad414667aba4054b9af4b71eb5f (diff) | |
| download | jetpac.nes-3b238d047207441a9ed4c3ae503f323e04b62bef.tar.gz jetpac.nes-3b238d047207441a9ed4c3ae503f323e04b62bef.zip | |
Wait for items to fall before changing screen
More specifically, whenever the player dies and we need to reset the
screen, wait for items to fall in the same way as we do for explosions
to disappear.
This also brought with it some other changes like removing sprite reset
on screen initialization.
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'src/jetpac.s')
| -rw-r--r-- | src/jetpac.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jetpac.s b/src/jetpac.s index d2ed90b..2d397ac 100644 --- a/src/jetpac.s +++ b/src/jetpac.s @@ -42,10 +42,10 @@ .include "background.s" .include "prng.s" .include "explosions.s" +.include "items.s" .include "player.s" .include "enemies.s" .include "bullets.s" -.include "items.s" .include "title.s" .include "over.s" .include "driver.s" |
