diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-07-08 09:31:14 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-07-08 09:34:52 +0200 |
| commit | 6ee6c7512bdbc836642dfdd607854faced55dfc3 (patch) | |
| tree | 3b8ca9c553e812ab9c9ddc8a94d80db9374bd3da /src/player.s | |
| parent | da6f2c70174219f61d0498bdd4325b7a8842a1fa (diff) | |
| download | jetpac.nes-6ee6c7512bdbc836642dfdd607854faced55dfc3.tar.gz jetpac.nes-6ee6c7512bdbc836642dfdd607854faced55dfc3.zip | |
Remove unused labels
Since commit 6a9dea943c07 ("Add a new 'check' stage in assemble()"),
nasm is now able to detect unused labels. This was then tried on this
repository the cleanup labels which were never used.
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'src/player.s')
| -rw-r--r-- | src/player.s | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/player.s b/src/player.s index 5060e87..e230fab 100644 --- a/src/player.s +++ b/src/player.s @@ -474,7 +474,6 @@ sbc #0 sta zp_position_x + 1 - @end: rts .endproc @@ -739,7 +738,7 @@ cmp #2 beq @animation2 ;; NOTE: fallthrough for either 0 or even buggy states. - @still: + ldx #$21 ldy #$20 bne @heading @@ -861,7 +860,6 @@ ora #%00001000 sta Player::zp_state - @skip_life_update: ;; Move the player's sprites out of the screen. ldx #0 lda #$FF |
