diff options
author | smesgr9000 <smesgr9000> | 2024-05-28 21:11:48 +0200 |
---|---|---|
committer | smesgr9000 <smesgr9000> | 2024-05-28 21:11:48 +0200 |
commit | d039c590cce55723bad15975c5aea21ea8671340 (patch) | |
tree | 7506b37b283e1f13165b0e19dbd63d7f7f05e47f /Cart_Reader/SMS.ino | |
parent | 0d9596eb70b3eb0494d0b66292d5d915df0b2aac (diff) | |
download | cartreader-d039c590cce55723bad15975c5aea21ea8671340.tar.gz cartreader-d039c590cce55723bad15975c5aea21ea8671340.zip |
define more commonly used string in OSCR and reuse them
Diffstat (limited to 'Cart_Reader/SMS.ino')
-rw-r--r-- | Cart_Reader/SMS.ino | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cart_Reader/SMS.ino b/Cart_Reader/SMS.ino index c2366cf..a1680ae 100644 --- a/Cart_Reader/SMS.ino +++ b/Cart_Reader/SMS.ino @@ -527,7 +527,7 @@ void getCartInfo_SMS() { println_Msg(FS(FSTRING_SPACE));
print_Msg(F("Name: "));
println_Msg(romName);
- print_Msg(F("Size: "));
+ print_Msg(FS(FSTRING_SIZE));
print_Msg(cartSize / 1024);
println_Msg(F("KB"));
println_Msg(FS(FSTRING_SPACE));
|