diff --git a/programs/games/arkanoid/arkanoid.asm b/programs/games/arkanoid/arkanoid.asm index 89f60d40a..d94e0b5ea 100644 --- a/programs/games/arkanoid/arkanoid.asm +++ b/programs/games/arkanoid/arkanoid.asm @@ -847,55 +847,55 @@ draw_ball: ; --- DATA --- DATA - title db 'Arkanoid Infinite', 0 - score_txt db 'SCORE', 0 - lives_txt db 'LIVES', 0 - level_txt db 'LEVEL', 0 - over_txt db 'GAME OVER', 0 - again_txt db 'PLAY AGAIN?', 0 - y_n_txt db 'Y/N', 0 - hs_title db 'HIGH SCORES', 0 - new_hs_txt db 'NEW HIGHSCORE!', 0 - paddle_x dd 150 - ball_active dd 0 - ball_x dd 0 - ball_y dd 0 - ball_dx dd 3 - ball_dy dd -4 - score dd 0 - old_score dd -1 - lives dd 4 - old_lives dd -1 - current_level dd 1 - old_level dd -1 - bricks_left dd 0 - random_seed dd 0x42069 - temp_y dd 0 - input_mode dd 0 - name_ptr dd 0 + title db 'Arkanoid Infinite', 0 + score_txt db 'SCORE', 0 + lives_txt db 'LIVES', 0 + level_txt db 'LEVEL', 0 + over_txt db 'GAME OVER', 0 + again_txt db 'PLAY AGAIN?', 0 + y_n_txt db 'Y/N', 0 + hs_title db 'HIGH SCORES', 0 + new_hs_txt db 'NEW HIGHSCORE!', 0 + paddle_x dd 150 + ball_active dd 0 + ball_x dd 0 + ball_y dd 0 + ball_dx dd 3 + ball_dy dd -4 + score dd 0 + old_score dd -1 + lives dd 4 + old_lives dd -1 + current_level dd 1 + old_level dd -1 + bricks_left dd 0 + random_seed dd 0x42069 + temp_y dd 0 + input_mode dd 0 + name_ptr dd 0 - file_info: - .op dd 0 - .pos dd 0 - .pos_hi dd 0 - .size dd 0 - .buf dd 0 - .rsvd db 0 - .path dd 0 +file_info: + .op dd 0 + .pos dd 0 + .pos_hi dd 0 + .size dd 0 + .buf dd 0 + .rsvd db 0 + .path dd 0 - HS_FILE db '/rd/1/GAMES/arkanoid.hs',0 + HS_FILE db '/rd/1/GAMES/arkanoid.hs',0 i_end: virtual at $ - hs_data: rb 60 - active_map: rb 256 - screen_buffer: rb (GAME_W * GAME_H * 3) + 1024 - hs_temp_buf rb 32 - score_buffer rb 32 - lives_buffer rb 32 - level_buffer rb 32 - new_name rb 16 + hs_data: rb 60 + active_map: rb 256 + screen_buffer: rb (GAME_W * GAME_H * 3) + 1024 + hs_temp_buf rb 32 + score_buffer rb 32 + lives_buffer rb 32 + level_buffer rb 32 + new_name rb 16 rb 4096 stacktop: mem_end: