From: twinaphex Date: Sun, 26 May 2013 17:00:45 +0000 (+0200) Subject: Revert "Add hack for broken bin/cue loading right now at startup" X-Git-Tag: r24l~930 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24aeb31fad7b983a60ef448cba97d9a2f167664d;hp=0133074b6007a703ad76b02e2a6fcea97a005647;p=pcsx_rearmed.git Revert "Add hack for broken bin/cue loading right now at startup" This reverts commit 5f8aa603b1f68d4bf4dbd341fed0e31b21f11bde. --- diff --git a/Makefile.libretro b/Makefile.libretro index a447ea93..9436c8a3 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -108,8 +108,6 @@ else CFLAGS += -D__WIN32__ -D__WIN32_LIBRETRO__ endif -CFLAGS += -D__LIBRETRO__ - CFLAGS += -fPIC ifneq ($(platform),qnx) LDLIBS += -lpthread diff --git a/libpcsxcore/cdriso.c b/libpcsxcore/cdriso.c index 24ac8914..9ca41726 100644 --- a/libpcsxcore/cdriso.c +++ b/libpcsxcore/cdriso.c @@ -327,7 +327,6 @@ 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, " "); @@ -336,7 +335,6 @@ static int parsetoc(const char *isofile) { return -1; } fseek(fi, 0, SEEK_SET); -#endif } memset(&ti, 0, sizeof(ti));