]> Shamusworld >> Repos - virtualjaguar/commitdiff
Small fix to allow EEPROMs to work on POSIX systems
authorShamus Hammons <jlhamm@acm.org>
Thu, 28 Aug 2003 17:40:07 +0000 (17:40 +0000)
committerShamus Hammons <jlhamm@acm.org>
Thu, 28 Aug 2003 17:40:07 +0000 (17:40 +0000)
src/eeprom.cpp

index 4a55ee0beddef95070a06173e1b0235fda6ca1bc..705014631b98dcc0808be1cc184128455389bb1d 100644 (file)
@@ -58,7 +58,7 @@ void eeprom_init(void)
 {
        static char eeprom_filename[1024];
 
-       sprintf(eeprom_filename, "%s\\%s%08X.eep", jaguar_boot_dir, jaguar_eeproms_path, (unsigned int)jaguar_mainRom_crc32);
+       sprintf(eeprom_filename, "%s/%s%08X.eep", jaguar_boot_dir, jaguar_eeproms_path, (unsigned int)jaguar_mainRom_crc32);
        jerry_ee_fp = fopen(eeprom_filename, "rb");
        if (jerry_ee_fp)
        {