mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-15 01:15:06 +01:00
Update SNES.ino
This commit is contained in:
parent
9775b2c854
commit
dae03f8810
@ -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 };
|
static const char* const menuOptionsReproCFI[] PROGMEM = { reproCFIItem1, reproCFIItem2, reproCFIItem3, reproCFIItem4, reproCFIItem5, reproCFIItem6, FSTRING_RESET };
|
||||||
|
|
||||||
// EX ROM config
|
// EX ROM config
|
||||||
static const char reproEXItem1[] PROGMEM = "standard (ABCD)";
|
static const char reproEXItem1[] PROGMEM = "standard (CDAB)";
|
||||||
static const char reproEXItem2[] PROGMEM = "reversed (CDAB)";
|
static const char reproEXItem2[] PROGMEM = "in-order (ABCD)";
|
||||||
static const char* const menuOptionsReproEX[] PROGMEM = { reproEXItem1, reproEXItem2, FSTRING_RESET };
|
static const char* const menuOptionsReproEX[] PROGMEM = { reproEXItem1, reproEXItem2, FSTRING_RESET };
|
||||||
|
|
||||||
void setupCFI() {
|
void setupCFI() {
|
||||||
@ -103,10 +103,10 @@ boolean reproEXMenu() {
|
|||||||
// wait for user choice to come back from the question box menu
|
// wait for user choice to come back from the question box menu
|
||||||
switch (snsReproEX) {
|
switch (snsReproEX) {
|
||||||
case 0:
|
case 0:
|
||||||
fileOrder = 0;
|
fileOrder = 1;
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
fileOrder = 1;
|
fileOrder = 0;
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
resetArduino();
|
resetArduino();
|
||||||
|
Loading…
Reference in New Issue
Block a user