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( write_asm(
atrview='title_fonts.atrview', atrview='title_fonts.atrview',
out='over_screen.asm', out='over_screen.asm',
page=5, page='GameOver',
line_from=0, line_from=0,
line_to=13, line_to=13,
skip_left=0, skip_left=0,
@@ -52,7 +52,7 @@ write_asm(
write_asm( write_asm(
atrview="title_fonts.atrview", atrview="title_fonts.atrview",
out='difficulty_texts.asm', out='difficulty_texts.asm',
page=4, page='Options',
line_from=0, line_from=0,
line_to=0+2, line_to=0+2,
skip_left=0, skip_left=0,
File diff suppressed because one or more lines are too long
+5 -2
View File
@@ -3538,8 +3538,8 @@ PowerCharEmpty = PowerChar0
; characters tables for GAme Over screen ; characters tables for GAme Over screen
;ascii codes ;ascii codes
char_ascii char_ascii
.by " ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789sl" .by " ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789sl<"
char_count = 39 char_count = 39 ; without DEL
char_byte1 char_byte1
.by $00 ; space .by $00 ; space
.by $20 ; A .by $20 ; A
@@ -3580,6 +3580,7 @@ char_byte1
.by $1e ; 9 .by $1e ; 9
.by $54 ; S` .by $54 ; S`
.by $36 ; L/ .by $36 ; L/
.by $18 ; DEL (arrow)
char_byte2 char_byte2
.by $00 ; space .by $00 ; space
.by $21 ; A .by $21 ; A
@@ -3620,6 +3621,7 @@ char_byte2
.by $1f ; 9 .by $1f ; 9
.by $55 ; S` .by $55 ; S`
.by $57 ; L/ .by $57 ; L/
.by $19 ; DEL (arrow)
char_byte3 char_byte3
.by $00 ; space .by $00 ; space
.by $31 ; A .by $31 ; A
@@ -3660,6 +3662,7 @@ char_byte3
.by $31 ; 9 .by $31 ; 9
.by $31 ; S` .by $31 ; S`
.by $58 ; L/ .by $58 ; L/
.by $00 ; DEL (arrow)
;-------------------------------- ;--------------------------------
joyToKeyTable joyToKeyTable
.by $ff ;00 .by $ff ;00
BIN
View File
Binary file not shown.