13.5 Fix SFM flash menu

https://github.com/sanni/cartreader/issues/980
This commit is contained in:
sanni 2024-07-05 19:19:40 +02:00
parent c2c1f7a0ba
commit 15a2983539
3 changed files with 4 additions and 4 deletions

View File

@ -4,8 +4,8 @@
This project represents a community-driven effort to provide This project represents a community-driven effort to provide
an easy to build and easy to modify cartridge dumper. an easy to build and easy to modify cartridge dumper.
Date: 2024-06-30 Date: 2024-07-05
Version: 13.4 Version: 13.5
SD lib: https://github.com/greiman/SdFat SD lib: https://github.com/greiman/SdFat
LCD lib: https://github.com/olikraus/u8g2 LCD lib: https://github.com/olikraus/u8g2

View File

@ -49,7 +49,7 @@
* String Constants * String Constants
**/ **/
// Firmware Version // Firmware Version
constexpr char PROGMEM FSTRING_VERSION[] = "V13.4"; constexpr char PROGMEM FSTRING_VERSION[] = "V13.5";
// Universal // Universal
constexpr char PROGMEM FSTRING_RESET[] = "Reset"; constexpr char PROGMEM FSTRING_RESET[] = "Reset";

View File

@ -58,7 +58,7 @@ void sfmMenu() {
case 0: case 0:
sfmGameMenu(); sfmGameMenu();
break; break;
#ifdef CORE_SFM_FLASH #ifdef ENABLE_FLASH
// Flash menu // Flash menu
case 1: case 1:
mode = CORE_SFM_FLASH; mode = CORE_SFM_FLASH;