X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fvj.cpp;h=123a0f56d0cce77b6cc5de48ebb2d7c9f3ef23c1;hb=a34be0c722746101ef35a8f860d6d618deca213b;hp=763d440ba9eb7b218ce2beb3460ea426ee952033;hpb=ff3fa0b1ecf246a104ff10fa6c3dc225cccce82f;p=virtualjaguar diff --git a/src/vj.cpp b/src/vj.cpp index 763d440..123a0f5 100644 --- a/src/vj.cpp +++ b/src/vj.cpp @@ -170,20 +170,20 @@ int main(int argc, char * argv[]) // Get the BIOS ROM #ifdef USE_BUILT_IN_BIOS WriteLog("VJ: Using built in BIOS/CD BIOS...\n"); - memcpy(jaguarBootRom, jagBootROM, 0x20000); + memcpy(jaguarBootROM, jagBootROM, 0x20000); memcpy(jaguarCDBootROM, jagCDROM, 0x40000); BIOSLoaded = CDBIOSLoaded = true; #else // What would be nice here would be a way to check if the BIOS was loaded so that we // could disable the pushbutton on the Misc Options menu... !!! FIX !!! [DONE here, but needs to be fixed in GUI as well!] WriteLog("About to attempt to load BIOSes...\n"); - BIOSLoaded = (JaguarLoadROM(jaguarBootRom, vjs.jagBootPath) == 0x20000 ? true : false); + BIOSLoaded = (JaguarLoadROM(jaguarBootROM, vjs.jagBootPath) == 0x20000 ? true : false); WriteLog("VJ: BIOS is %savailable...\n", (BIOSLoaded ? "" : "not ")); CDBIOSLoaded = (JaguarLoadROM(jaguarCDBootROM, vjs.CDBootPath) == 0x40000 ? true : false); WriteLog("VJ: CD BIOS is %savailable...\n", (CDBIOSLoaded ? "" : "not ")); #endif - SET32(jaguarMainRam, 0, 0x00200000); // Set top of stack... + SET32(jaguarMainRAM, 0, 0x00200000); // Set top of stack... WriteLog("Initializing video subsystem...\n"); VideoInit();