diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-06 21:38:32 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-06 21:38:32 +0100 |
| commit | 270d60d58d3ef206a11057d399e360976546e439 (patch) | |
| tree | 21dd02ae17e7d0dc60e6bc48c56399cab8fe59c3 /.nasm | |
| parent | fb3f09ad7691765a7f578309a80c4a0cf4012236 (diff) | |
| download | jetpac.nes-270d60d58d3ef206a11057d399e360976546e439.tar.gz jetpac.nes-270d60d58d3ef206a11057d399e360976546e439.zip | |
Rename scoped variables without being redundant
Some variables had the same name of the scope in their names as
well. Remove this redundancy everywhere.
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to '.nasm')
| -rw-r--r-- | .nasm/memory.txt | 14 |
1 files changed, 7 insertions, 7 deletions
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 |
