From dae03f881036474d2b77f3f57569664567cc6452 Mon Sep 17 00:00:00 2001 From: sanni Date: Thu, 8 Aug 2024 19:51:06 +0200 Subject: [PATCH] Update SNES.ino --- Cart_Reader/SNES.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cart_Reader/SNES.ino b/Cart_Reader/SNES.ino index 802805e..8319bf4 100644 --- a/Cart_Reader/SNES.ino +++ b/Cart_Reader/SNES.ino @@ -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() { @@ -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();