X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Feeprom.cpp;h=266a11ae19f170f726c47fdd02b4b3b92b80b84d;hb=f0e50fb1d23805881b72d51ea603be78b645ec97;hp=35e0d4d63ce575690407b5e0642bbfd97619a842;hpb=d239de704f276a75d927900e3d413a44cc87116c;p=virtualjaguar diff --git a/src/eeprom.cpp b/src/eeprom.cpp index 35e0d4d..266a11a 100644 --- a/src/eeprom.cpp +++ b/src/eeprom.cpp @@ -4,6 +4,13 @@ // by Cal2 // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS) // Cleanups/enhancements by James L. Hammons +// (C) 2010 Underground Software +// +// JLH = James L. Hammons +// +// Who When What +// --- ---------- ------------------------------------------------------------- +// JLH 01/16/2010 Created this log ;-) // #include "eeprom.h" @@ -48,7 +55,7 @@ static bool foundEEPROM = false; void EepromInit(void) { - sprintf(eeprom_filename, "%s%08X.eep", vjs.EEPROMPath, (unsigned int)jaguarMainRomCRC32); + sprintf(eeprom_filename, "%s%08X.eep", vjs.EEPROMPath, (unsigned int)jaguarMainROMCRC32); FILE * fp = fopen(eeprom_filename, "rb"); if (fp)