NES.ino: Always set browseDatabase

Fixes a compiler warning.
This commit is contained in:
Vincent Pelletier 2022-11-05 00:37:44 +00:00
parent 4b9c6430f9
commit 4d3cdd9004

View File

@ -562,7 +562,9 @@ void getMapping() {
break;
}
}
if (!database.available()) {
if (database.available()) {
browseDatabase = false;
} else {
// File searched until end but nothing found
println_Msg(F(""));
println_Msg(F("CRC not found in database"));