aboutsummaryrefslogtreecommitdiffhomepage
path: root/Cart_Reader/WSV.ino
diff options
context:
space:
mode:
authorsmesgr9000 <smesgr9000>2024-05-28 21:11:48 +0200
committersmesgr9000 <smesgr9000>2024-05-28 21:11:48 +0200
commitd039c590cce55723bad15975c5aea21ea8671340 (patch)
tree7506b37b283e1f13165b0e19dbd63d7f7f05e47f /Cart_Reader/WSV.ino
parent0d9596eb70b3eb0494d0b66292d5d915df0b2aac (diff)
downloadcartreader-d039c590cce55723bad15975c5aea21ea8671340.tar.gz
cartreader-d039c590cce55723bad15975c5aea21ea8671340.zip
define more commonly used string in OSCR and reuse them
Diffstat (limited to 'Cart_Reader/WSV.ino')
-rw-r--r--Cart_Reader/WSV.ino6
1 files changed, 3 insertions, 3 deletions
diff --git a/Cart_Reader/WSV.ino b/Cart_Reader/WSV.ino
index d326cf3..7360875 100644
--- a/Cart_Reader/WSV.ino
+++ b/Cart_Reader/WSV.ino
@@ -238,7 +238,7 @@ void setROMSize_WSV() {
display.setCursor(0, 56); // Display selection at bottom
}
- print_Msg(F("ROM SIZE "));
+ print_Msg(FS(FSTRING_ROM_SIZE));
print_Msg(pgm_read_word(&(WSV[newwsvsize])));
println_Msg(F("K"));
display_Update();
@@ -287,7 +287,7 @@ void checkStatus_WSV() {
println_Msg(F("WATARA SUPERVISION"));
println_Msg(FS(FSTRING_CURRENT_SETTINGS));
println_Msg(FS(FSTRING_EMPTY));
- print_Msg(F("ROM SIZE: "));
+ print_Msg(FS(FSTRING_ROM_SIZE));
print_Msg(pgm_read_word(&(WSV[wsvsize])));
println_Msg(F("K"));
display_Update();
@@ -336,7 +336,7 @@ void readDataLine_WSV(FsFile& database, void* entry) {
void printDataLine_WSV(void* entry) {
struct database_entry_WSV* castEntry = (database_entry_WSV*)entry;
- print_Msg(F("Size: "));
+ print_Msg(FS(FSTRING_SIZE));
if (castEntry->gameSize == 51)
print_Msg(F("512"));
else