From 21cf427b70f9e094423652741795e8e02128f28b Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 10 Feb 2026 23:33:44 +0100 Subject: Remove target velocities from the player MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was mostly from an old implementation and no longer relevant. Signed-off-by: Miquel Sabaté Solà --- src/player.s | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/player.s b/src/player.s index 2a87b85..df2ee68 100644 --- a/src/player.s +++ b/src/player.s @@ -74,12 +74,10 @@ zp_screen_y = $40 zp_position_y = $41 ; asan:reserve $02 - zp_target_velocity_y = $43 ; TODO: needed? zp_velocity_y = $44 zp_screen_x = $45 zp_position_x = $46 ; asan:reserve $02 - zp_target_velocity_x = $48 ; TODO: needed? zp_velocity_x = $49 ;; Flags that manage the state of the player. @@ -128,9 +126,7 @@ ;; Reset velocity and walking counter. lda #0 - sta zp_target_velocity_y sta zp_velocity_y - sta zp_target_velocity_x sta zp_velocity_x sta zp_walk_counter -- cgit v1.2.3