From: Shamus Hammons Date: Tue, 19 Jul 2011 00:32:12 +0000 (+0000) Subject: Kludge: Keep BIOS from running in Alpine mode. X-Git-Tag: 2.0.0~17 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d5f8e3d02c101a98279fbe02189e4ee04b9981b;p=virtualjaguar Kludge: Keep BIOS from running in Alpine mode. --- 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);