Accept just "A" to boot from ROM disk allocated in RAM

This commit is contained in:
Zane Kaminski 2021-06-27 14:35:46 -04:00
parent b30abc4091
commit a42a08597a
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -14,9 +14,9 @@ static void RDDecodeSettings(Ptr unmountEN, Ptr mountEN, Ptr ramEN, Ptr dbgEN, P
char r = 0, a = 0;
long tmax = TickCount() + 60;
for (long i = 0; i < 1000000; i++) {
r |= RDiskIsRPressed();
a |= RDiskIsAPressed();
if (r && a) { break; }
r |= RDiskIsRPressed() | a;
if (r) { break; }
if (TickCount() > tmax) { break; }
}