diff options
Diffstat (limited to 'src/driver.s')
| -rw-r--r-- | src/driver.s | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/driver.s b/src/driver.s index 4e54e8c..cf0fc43 100644 --- a/src/driver.s +++ b/src/driver.s @@ -8,7 +8,7 @@ ;; never conflict with each other. zp_player_timer = $30 ; asan:ignore PLAYER_TIMER_FULL_VALUE = HZ * 3 - PLAYER_TIMER_DEV_VALUE = HZ / 4 + PLAYER_TIMER_DEV_VALUE = HZ / 4 ; asan:ignore .ifdef PARTIAL PLAYER_TIMER_VALUE = PLAYER_TIMER_DEV_VALUE .else @@ -498,7 +498,6 @@ cpx zp_first_bullet beq @next_bullet - @do_bullet: ;; Ok, so the bullet has not been allocated yet and we have space for ;; it. Is it valid? lda Bullets::zp_pool_base, x @@ -554,7 +553,6 @@ cpx zp_first_enemy beq @next_enemy - @do_enemy: ;; Ok, so the enemy has not been allocated yet and we have space for ;; it. Is it valid? lda Enemies::zp_pool_base, x @@ -582,7 +580,6 @@ cpx #Explosions::EXPLOSIONS_POOL_CAPACITY_BYTES beq @after_explosions - @do_explosion: ;; Is it valid? lda Explosions::zp_pool_base, x and #$80 |
