Skip to content

Commit 82463fe

Browse files
Nutpilemateoconlechuga
authored andcommitted
Fixed bugs in strings.asm
fixed str_cannot_hide being too long and overflowing the screen fixed string_transfer being too long and overlapping with the [PRGM] text
1 parent 5c35f2c commit 82463fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/strings.asm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ string_rename:
529529
db 'Rinomina',0
530530
db $7e,'GRAPH]',0
531531
string_transfer:
532-
db 'Transferisci',0
532+
db 'Transf.',0
533533
db $7e,'PRGM]',0
534534
string_edit_prgm:
535535
db 'Modifica',0
@@ -552,7 +552,7 @@ string_setting_indicator:
552552
string_setting_clock:
553553
db 'Mostra l',$27,'orologio',0
554554
string_setting_show_battery:
555-
db 'Mostra stato della batteria',0
555+
db 'Mostra lo stato della batteria',0
556556
string_setting_show_hidden:
557557
db 'Nascondi i programmi nascosti',0
558558
string_setting_ram_backup:
@@ -616,6 +616,6 @@ string_ram_error:
616616
str_invalid_os:
617617
db 'Impossibile usare questo OS',0
618618
str_cannot_hide:
619-
db 'Impossibile mostrare/nascondere programmi archiviati',0
619+
db 'Impos. mostrare/nascondere prgm archiv.',0
620620

621621
end if

0 commit comments

Comments
 (0)