]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/eeprom.cpp
Preliminary key handling using Qt key types.
[virtualjaguar] / src / eeprom.cpp
index 35e0d4d63ce575690407b5e0642bbfd97619a842..266a11ae19f170f726c47fdd02b4b3b92b80b84d 100644 (file)
@@ -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 <jlhamm@acm.org>
+//
+// 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)