]> Shamusworld >> Repos - virtualjaguar/commitdiff
Kludge: Keep BIOS from running in Alpine mode.
authorShamus Hammons <jlhamm@acm.org>
Tue, 19 Jul 2011 00:32:12 +0000 (00:32 +0000)
committerShamus Hammons <jlhamm@acm.org>
Tue, 19 Jul 2011 00:32:12 +0000 (00:32 +0000)
src/jaguar.cpp

index c4cdc94f6d297fe6207fb8f8c29a78ca92f2ef7e..2ce5da5a5cba671e6ab823a56e6a6e465142a866 100644 (file)
@@ -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);