diff options
author | sanni <[email protected]> | 2020-04-12 11:11:10 +0200 |
---|---|---|
committer | sanni <[email protected]> | 2020-04-12 11:11:10 +0200 |
commit | 7b263115a563100418f845b12ff30122a20f9b96 (patch) | |
tree | 8d63eb9eb4d14412ea3165cd0d0192baa80eacb8 /Cart_Reader/N64.ino | |
parent | aa4621a54dd043170b85f8a27a353969b86343b4 (diff) | |
download | cartreader-7b263115a563100418f845b12ff30122a20f9b96.tar.gz cartreader-7b263115a563100418f845b12ff30122a20f9b96.zip |
V4.8: Add Reset Option to sub menues
Diffstat (limited to 'Cart_Reader/N64.ino')
-rw-r--r-- | Cart_Reader/N64.ino | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Cart_Reader/N64.ino b/Cart_Reader/N64.ino index 7e17939..41d14ff 100644 --- a/Cart_Reader/N64.ino +++ b/Cart_Reader/N64.ino @@ -96,11 +96,11 @@ static const char* const saveOptionsN64[] PROGMEM = {N64SaveItem1, N64SaveItem2, // N64 start menu
void n64Menu() {
- // create menu with title and 3 options to choose from
+ // create menu with title and 5 options to choose from
unsigned char n64Dev;
// Copy menuOptions out of progmem
- convertPgm(menuOptionsN64, 4);
- n64Dev = question_box(F("Select N64 device"), menuOptions, 4, 0);
+ convertPgm(menuOptionsN64, 5);
+ n64Dev = question_box(F("Select N64 device"), menuOptions, 5, 0);
// wait for user choice to come back from the question box menu
switch (n64Dev)
|