diff options
author | Remy Starshade <[email protected]> | 2022-11-12 14:13:22 -0500 |
---|---|---|
committer | Remy Starshade <[email protected]> | 2022-11-12 14:13:22 -0500 |
commit | aee632642d176b1da9c143b1d92190670e11f0ab (patch) | |
tree | c024c376f798b6bf3513b333f0e8d7fbbba62f8d /Cart_Reader/SNES.ino | |
parent | be8ebee87f4ec46964f842a667587949b7bb10e6 (diff) | |
download | cartreader-aee632642d176b1da9c143b1d92190670e11f0ab.tar.gz cartreader-aee632642d176b1da9c143b1d92190670e11f0ab.zip |
Add Voltage Selection Module
Diffstat (limited to 'Cart_Reader/SNES.ino')
-rw-r--r-- | Cart_Reader/SNES.ino | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Cart_Reader/SNES.ino b/Cart_Reader/SNES.ino index 62b40d3..2cd97a1 100644 --- a/Cart_Reader/SNES.ino +++ b/Cart_Reader/SNES.ino @@ -70,6 +70,7 @@ static const char* const menuOptionsRepro[] PROGMEM = { reproMenuItem1, reproMen // SNES repro menu void reproMenu() { + vselect(false); // create menu with title and 6 options to choose from unsigned char snsRepro; // Copy menuOptions out of progmem @@ -132,6 +133,7 @@ void reproMenu() { // SNES start menu void snsMenu() { + vselect(false); // create menu with title and 6 options to choose from unsigned char snsCart; // Copy menuOptions out of progmem @@ -190,6 +192,7 @@ void snsMenu() { // SNES Menu void snesMenu() { + vselect(false); // create menu with title and 7 options to choose from unsigned char mainMenu; // Copy menuOptions out of progmem |