From 270d60d58d3ef206a11057d399e360976546e439 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Fri, 6 Mar 2026 21:38:32 +0100 Subject: Rename scoped variables without being redundant MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some variables had the same name of the scope in their names as well. Remove this redundancy everywhere. Signed-off-by: Miquel Sabaté Solà --- .nasm/memory.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to '.nasm/memory.txt') diff --git a/.nasm/memory.txt b/.nasm/memory.txt index a559dcf..5607860 100644 --- a/.nasm/memory.txt +++ b/.nasm/memory.txt @@ -20,7 +20,7 @@ $30: zp_title_timer $32: zp_pause_timer $33: zp_next_bullet_cycle $34: zp_first_bullet -$35: zp_bullet_timer +$35: zp_timer $36: zp_first_enemy $37: zp_next_enemy_cycle $38: zp_moved_out @@ -34,19 +34,19 @@ $49: zp_velocity_x $50: zp_state $51: zp_walk_counter $53-$54: zp_lifes -$60-$6B: zp_enemies_pool_base +$60-$6B: zp_pool_base $70-$7B: zp_pool_base $7C: zp_active $80: zp_control $81: zp_mask -$A0-$BD: zp_bullets_pool_base +$A0-$BD: zp_pool_base $CF: zp_player_tile_bottom -$D1: zp_enemy_tiles -$D2-$D3: zp_enemy_movement_fn +$D1: zp_tiles +$D2-$D3: zp_movement_fn $D4: zp_pool_index -$D5: zp_enemy_arg +$D5: zp_movement_arg $D6: zp_palette -$E0: zp_bullets_pool_size +$E0: zp_pool_size $E1: zp_last_allocated_index $E2: zp_current_bullet_y $E3: zp_current_bullet_x -- cgit v1.2.3