Fix NES mapper selection

This commit is contained in:
sanni 2022-11-18 10:46:13 +01:00
parent 4fad4463e9
commit 46dd333bd4
3 changed files with 15 additions and 16 deletions

View File

@ -4,8 +4,8 @@
This project represents a community-driven effort to provide
an easy to build and easy to modify cartridge dumper.
Date: 12.11.2022
Version: 11.3
Date: 18.11.2022
Version: 11.4
SD lib: https://github.com/greiman/SdFat
LCD lib: https://github.com/olikraus/u8g2
@ -15,7 +15,7 @@
RTC lib: https://github.com/adafruit/RTClib
Frequency lib: https://github.com/PaulStoffregen/FreqCount
Compiled with Arduino IDE 2.0.1
Compiled with Arduino IDE 2.0.2
Thanks to:
MichlK - ROM Reader for Super Nintendo
@ -38,7 +38,7 @@
jiyunomegami, splash5, Kreeblah, ramapcsx2, PsyK0p4T, Dakkaron, majorpbx, Pickle, sdhizumi,
Uzlopak, sakman55, Tombo89, scrap-a, borti4938, vogelfreiheit, CaitSith2, Modman,
philenotfound, karimhadjsalem, nsx0r, ducky92, niklasweber, Lesserkuma, BacteriaMage,
vpelletier
vpelletier, Ancyker
And to nocash for figuring out the secrets of the SFC Nintendo Power cartridge.
@ -57,7 +57,7 @@
**********************************************************************************/
char ver[5] = "11.3";
char ver[5] = "11.4";
//******************************************
// !!! CHOOSE HARDWARE VERSION !!!

View File

@ -1415,7 +1415,6 @@ void readROM_MD() {
compareCRC("32x.txt", 0, 1, 0);
else
compareCRC("md.txt", 0, 1, 0);
}
/******************************************

View File

@ -566,7 +566,7 @@ void getMapping() {
}
}
if (database.available()) {
browseDatabase = false;
browseDatabase = true;
} else {
// File searched until end but nothing found
println_Msg(F(""));