Mapper 280: Don't switch modes when there are only 512 KiB of PRG-ROM.

This commit is contained in:
NewRisingSun
2025-10-25 13:47:06 +02:00
parent 0d3b44c99c
commit f452da1c89

View File

@@ -63,7 +63,7 @@ static DECLFW(M280Write) {
}
static void M280Reset(void) {
mode ^=1;
if (ROM_size >32) mode ^=1;
latchAddr = 0;
latchData = 0;
Sync();