From: Shamus Hammons Date: Thu, 28 Aug 2003 17:40:07 +0000 (+0000) Subject: Small fix to allow EEPROMs to work on POSIX systems X-Git-Tag: 1.0.5~2 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53fb0ca4ce174b7f36d39404cfb907ae3deaf55d;p=virtualjaguar Small fix to allow EEPROMs to work on POSIX systems --- diff --git a/src/eeprom.cpp b/src/eeprom.cpp index 4a55ee0..7050146 100644 --- a/src/eeprom.cpp +++ b/src/eeprom.cpp @@ -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) {