diff options
author | twinaphex | 2013-05-04 01:10:21 +0200 |
---|---|---|
committer | twinaphex | 2013-05-04 01:10:21 +0200 |
commit | 5f8aa603b1f68d4bf4dbd341fed0e31b21f11bde (patch) | |
tree | f310b8eba87f3c9008e1f1e9589cde503f3909dc /libpcsxcore | |
parent | c491fa92b693b60326421094f03b911ee71ef8d7 (diff) | |
download | pcsx_rearmed-5f8aa603b1f68d4bf4dbd341fed0e31b21f11bde.tar.gz pcsx_rearmed-5f8aa603b1f68d4bf4dbd341fed0e31b21f11bde.tar.bz2 pcsx_rearmed-5f8aa603b1f68d4bf4dbd341fed0e31b21f11bde.zip |
Add hack for broken bin/cue loading right now at startup
Diffstat (limited to 'libpcsxcore')
-rw-r--r-- | libpcsxcore/cdriso.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpcsxcore/cdriso.c b/libpcsxcore/cdriso.c index 9ca4172..24ac891 100644 --- a/libpcsxcore/cdriso.c +++ b/libpcsxcore/cdriso.c @@ -327,6 +327,7 @@ static int parsetoc(const char *isofile) { return -1; } } +#ifndef __LIBRETRO__ // check if it's really a TOC named as a .cue fgets(linebuf, sizeof(linebuf), fi); token = strtok(tmp, " "); @@ -335,6 +336,7 @@ static int parsetoc(const char *isofile) { return -1; } fseek(fi, 0, SEEK_SET); +#endif } memset(&ti, 0, sizeof(ti)); |