mirror of
https://github.com/garrettsworkshop/GWRAM.SYSTEM.git
synced 2025-10-31 11:56:44 -07:00
Lowered reset count to 25
This commit is contained in:
6
ram2gs.c
6
ram2gs.c
@@ -96,8 +96,8 @@ int ram2gs_main(void)
|
||||
case '2': en8meg = 1; ram2gs_set8mb(); break;
|
||||
case 'R': {
|
||||
reset_count++;
|
||||
if (reset_count >= 100) {
|
||||
// Show message about saving.
|
||||
if (reset_count >= 25) {
|
||||
// Show message about resetting.
|
||||
clrscr(); // Clear screen
|
||||
gwcputsxy(1, 8, "Resetting RAM2GS settings.");
|
||||
gwcputsxy(1, 9, "Do not turn off your Apple.");
|
||||
@@ -113,7 +113,7 @@ int ram2gs_main(void)
|
||||
gwcputsxy(1, 8, "RAM2GS settings reset successfully.");
|
||||
goto end;
|
||||
}
|
||||
} default: continue;
|
||||
} default: reset_count = 0; continue;
|
||||
}
|
||||
|
||||
// Check if pressed with apple key. If so, save to nonvolatile memory.
|
||||
|
||||
Reference in New Issue
Block a user