diff options
author | sanni <[email protected]> | 2023-03-07 15:23:55 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-03-07 15:23:55 +0100 |
commit | e7b2ee094e28b8bdb352c5c3b01493780e9a536d (patch) | |
tree | 16d6b5d0aaae64ede737bcf20baeee9fe0b086db | |
parent | a8473341a0490f16ad58fe4ead409f01b0d432ec (diff) | |
parent | 2efa1f0d48f6887c86b78da7dac37cf77397fee0 (diff) | |
download | cartreader-e7b2ee094e28b8bdb352c5c3b01493780e9a536d.tar.gz cartreader-e7b2ee094e28b8bdb352c5c3b01493780e9a536d.zip |
Merge pull request #727 from PsyK0p4T/master
Various fixes
-rw-r--r-- | Cart_Reader/Cart_Reader.ino | 4 | ||||
-rw-r--r-- | Cart_Reader/PCE.ino | 29 |
2 files changed, 19 insertions, 14 deletions
diff --git a/Cart_Reader/Cart_Reader.ino b/Cart_Reader/Cart_Reader.ino index e8b43a0..2ee35fc 100644 --- a/Cart_Reader/Cart_Reader.ino +++ b/Cart_Reader/Cart_Reader.ino @@ -996,7 +996,7 @@ static const char modeItem6[] PROGMEM = "SMS/GG/MIII/SG-1000"; static const char modeItem7[] PROGMEM = "PC Engine/TG16";
static const char modeItem8[] PROGMEM = "WonderSwan";
static const char modeItem9[] PROGMEM = "NeoGeo Pocket";
-static const char modeItem10[] PROGMEM = "Intellvision";
+static const char modeItem10[] PROGMEM = "Intellivision";
static const char modeItem11[] PROGMEM = "Colecovision";
static const char modeItem12[] PROGMEM = "Virtual Boy";
static const char modeItem13[] PROGMEM = "Watara Supervision";
@@ -3586,4 +3586,4 @@ void loop() { //******************************************
// End of File
-//******************************************
\ No newline at end of file +//******************************************
diff --git a/Cart_Reader/PCE.ino b/Cart_Reader/PCE.ino index cbc44aa..3fda2bc 100644 --- a/Cart_Reader/PCE.ino +++ b/Cart_Reader/PCE.ino @@ -61,7 +61,7 @@ static const char menuOptionspceCart_1[] PROGMEM = "Read RAM Bank %d"; static const char menuOptionspceCart_2[] PROGMEM = "Write RAM Bank %d"; static const char menuOptionspceCart_3[] PROGMEM = "Inc Bank Number"; static const char menuOptionspceCart_4[] PROGMEM = "Dec Bank Number"; -static const char menuOptionspceCart_5[] PROGMEM = "Force 1MB ROM size"; +static const char menuOptionspceCart_5[] PROGMEM = "Set %dK ROM size"; static const char menuOptionspceCart_5_fmt[] PROGMEM = "ROM size now %dK"; // Turbochip menu items @@ -607,6 +607,11 @@ void read_tennokoe_bank_PCE(int bank_index) { //Close the file: myFile.close(); + + println_Msg(F("")); + print_STR(press_button_STR, 1); + display_Update(); + wait(); } void write_tennokoe_bank_PCE(int bank_index) { @@ -698,11 +703,15 @@ void write_tennokoe_bank_PCE(int bank_index) { // Close the file: myFile.close(); println_Msg(F("Finished")); - display_Update(); - wait(); + } else { print_Error(F("File doesn't exist")); } + + println_Msg(F("")); + print_STR(press_button_STR, 1); + display_Update(); + wait(); } void read_rom_PCE(void) { @@ -788,6 +797,11 @@ void read_rom_PCE(void) { //CRC search and rename ROM crc_search(fileName, folder, rom_size, crc); + + println_Msg(F("")); + print_STR(press_button_STR, 1); + display_Update(); + wait(); } // PC Engine Menu @@ -827,19 +841,16 @@ void pceMenu() { if (tennokoe_bank_index < 3) { tennokoe_bank_index++; } - pceMenu(); break; case 4: if (tennokoe_bank_index > 0) { tennokoe_bank_index--; } - pceMenu(); break; case 5: pce_force_rom_size = FORCED_SIZE; - pceMenu(); break; case 6: @@ -862,12 +873,6 @@ void pceMenu() { break; } } - - println_Msg(F("")); - // Prints string out of the common strings array either with or without newline - print_STR(press_button_STR, 1); - display_Update(); - wait(); } #endif |