From 5d5f8e3d02c101a98279fbe02189e4ee04b9981b Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Tue, 19 Jul 2011 00:32:12 +0000 Subject: [PATCH] Kludge: Keep BIOS from running in Alpine mode. --- src/jaguar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jaguar.cpp b/src/jaguar.cpp index c4cdc94..2ce5da5 100644 --- a/src/jaguar.cpp +++ b/src/jaguar.cpp @@ -1605,8 +1605,8 @@ void JaguarReset(void) //into it somewhere... //Also, have to change this here and in JaguarReadXX() currently // Only use the system BIOS if it's available...! (it's always available now!) - if (vjs.useJaguarBIOS) - memcpy(jaguarMainRAM, &jagMemSpace[0xE00000], 8); + if (vjs.useJaguarBIOS && !vjs.hardwareTypeAlpine) + memcpy(jaguarMainRAM, jagMemSpace + 0xE00000, 8); else SET32(jaguarMainRAM, 4, jaguarRunAddress); -- 2.37.2