Arrow char..

This commit is contained in:
Pecusx
2025-05-31 16:05:59 +02:00
parent 06bad2f194
commit ef8a7e13f9
4 changed files with 10 additions and 7 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ def write_asm(atrview, out, page, line_from, line_to, skip_left, skip_right):
write_asm(
atrview='title_fonts.atrview',
out='over_screen.asm',
page=5,
page='GameOver',
line_from=0,
line_to=13,
skip_left=0,
@@ -52,7 +52,7 @@ write_asm(
write_asm(
atrview="title_fonts.atrview",
out='difficulty_texts.asm',
page=4,
page='Options',
line_from=0,
line_to=0+2,
skip_left=0,
File diff suppressed because one or more lines are too long
+7 -4
View File
@@ -3538,8 +3538,8 @@ PowerCharEmpty = PowerChar0
; characters tables for GAme Over screen
;ascii codes
char_ascii
.by " ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789sl"
char_count = 39
.by " ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789sl<"
char_count = 39 ; without DEL
char_byte1
.by $00 ; space
.by $20 ; A
@@ -3579,7 +3579,8 @@ char_byte1
.by $1c ; 8
.by $1e ; 9
.by $54 ; S`
.by $36 ; L/
.by $36 ; L/
.by $18 ; DEL (arrow)
char_byte2
.by $00 ; space
.by $21 ; A
@@ -3619,7 +3620,8 @@ char_byte2
.by $13 ; 8
.by $1f ; 9
.by $55 ; S`
.by $57 ; L/
.by $57 ; L/
.by $19 ; DEL (arrow)
char_byte3
.by $00 ; space
.by $31 ; A
@@ -3660,6 +3662,7 @@ char_byte3
.by $31 ; 9
.by $31 ; S`
.by $58 ; L/
.by $00 ; DEL (arrow)
;--------------------------------
joyToKeyTable
.by $ff ;00
BIN
View File
Binary file not shown.