Skip to content

Commit

Permalink
Update SNES.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
sanni committed Aug 8, 2024
1 parent 9775b2c commit dae03f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cart_Reader/SNES.ino
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ static const char reproCFIItem6[] PROGMEM = "1x 8MB";
static const char* const menuOptionsReproCFI[] PROGMEM = { reproCFIItem1, reproCFIItem2, reproCFIItem3, reproCFIItem4, reproCFIItem5, reproCFIItem6, FSTRING_RESET };

// EX ROM config
static const char reproEXItem1[] PROGMEM = "standard (ABCD)";
static const char reproEXItem2[] PROGMEM = "reversed (CDAB)";
static const char reproEXItem1[] PROGMEM = "standard (CDAB)";
static const char reproEXItem2[] PROGMEM = "in-order (ABCD)";
static const char* const menuOptionsReproEX[] PROGMEM = { reproEXItem1, reproEXItem2, FSTRING_RESET };

void setupCFI() {
Expand Down Expand Up @@ -103,10 +103,10 @@ boolean reproEXMenu() {
// wait for user choice to come back from the question box menu
switch (snsReproEX) {
case 0:
fileOrder = 0;
fileOrder = 1;
break;
case 1:
fileOrder = 1;
fileOrder = 0;
break;
case 2:
resetArduino();
Expand Down

0 comments on commit dae03f8

Please sign in to comment.