diff options
author | sanni <[email protected]> | 2023-03-19 00:18:44 +0100 |
---|---|---|
committer | sanni <[email protected]> | 2023-03-19 00:18:44 +0100 |
commit | 16f4a757214085486463b85b367d6a8e077bae67 (patch) | |
tree | 82f1dfafe109adf9bf21871a70c8df18443e52ed | |
parent | 3d659e4abc6611cf99b47fc8db28dd1423ed8922 (diff) | |
download | cartreader-16f4a757214085486463b85b367d6a8e077bae67.tar.gz cartreader-16f4a757214085486463b85b367d6a8e077bae67.zip |
Add (3V) to NGP menu title
-rw-r--r-- | Cart_Reader/Cart_Reader.ino | 4 | ||||
-rw-r--r-- | Cart_Reader/NGP.ino | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cart_Reader/Cart_Reader.ino b/Cart_Reader/Cart_Reader.ino index ca51291..1a5169e 100644 --- a/Cart_Reader/Cart_Reader.ino +++ b/Cart_Reader/Cart_Reader.ino @@ -998,7 +998,7 @@ static const char modeItem5[] PROGMEM = "Mega Drive/Genesis"; static const char modeItem6[] PROGMEM = "SMS/GG/MIII/SG-1000";
static const char modeItem7[] PROGMEM = "PC Engine/TG16";
static const char modeItem8[] PROGMEM = "WonderSwan (3V)";
-static const char modeItem9[] PROGMEM = "NeoGeo Pocket";
+static const char modeItem9[] PROGMEM = "NeoGeo Pocket (3V)";
static const char modeItem10[] PROGMEM = "Intellivision";
static const char modeItem11[] PROGMEM = "Colecovision";
static const char modeItem12[] PROGMEM = "Virtual Boy";
@@ -1274,7 +1274,7 @@ static const char* const consoles90Options[] PROGMEM = { consoles90Item1, string // Handhelds submenu
static const char handheldsItem1[] PROGMEM = "Virtual Boy";
static const char handheldsItem2[] PROGMEM = "WonderSwan (3V)";
-static const char handheldsItem3[] PROGMEM = "NeoGeo Pocket";
+static const char handheldsItem3[] PROGMEM = "NeoGeo Pocket (3V)";
static const char handheldsItem4[] PROGMEM = "Watara Supervision";
static const char handheldsItem5[] PROGMEM = "Pocket Challenge W";
//static const char handheldsItem6[] PROGMEM = "Reset"; (stored in common strings array)
diff --git a/Cart_Reader/NGP.ino b/Cart_Reader/NGP.ino index 2359e46..913c544 100644 --- a/Cart_Reader/NGP.ino +++ b/Cart_Reader/NGP.ino @@ -52,7 +52,7 @@ void setup_NGP() { } void ngpMenu() { - vselect(false); + vselect(true); uint8_t mainMenu; convertPgm(menuOptionsNGP, 4); |