mirror of https://github.com/PCSX2/pcsx2.git
Fixed Linux again. Still don't have time to actually implement adding the new features yet in Linux. (Likely won't till next week or later)
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1503 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
366357228d
commit
31869753a0
|
@ -27,10 +27,6 @@
|
|||
|
||||
#include "CDVDisoReader.h"
|
||||
|
||||
#ifndef MAX_PATH
|
||||
#define MAX_PATH 255
|
||||
#endif
|
||||
|
||||
bool loadFromISO=false;
|
||||
|
||||
char isoFileName[256];
|
||||
|
|
|
@ -34,6 +34,11 @@
|
|||
#include "IsoFileFormats.h"
|
||||
|
||||
#define CDVD_LOG __Log
|
||||
|
||||
#ifndef MAX_PATH
|
||||
#define MAX_PATH 255
|
||||
#endif
|
||||
|
||||
extern FILE *cdvdLog;
|
||||
|
||||
void __Log(char *fmt, ...);
|
||||
|
@ -43,7 +48,7 @@ void __Log(char *fmt, ...);
|
|||
|
||||
extern char isoFileName[256];
|
||||
|
||||
extern isoFile *blockDumpFile;
|
||||
//extern isoFile *blockDumpFile;
|
||||
extern isoFile *iso;
|
||||
|
||||
s32 ISOinit();
|
||||
|
|
|
@ -14,6 +14,7 @@ noinst_LIBRARIES = libps2_cdvd.a
|
|||
libps2_cdvd_a_SOURCES = \
|
||||
CDVD.cpp IsoFStools.cpp IsoFSdrv.cpp CdRom.cpp \
|
||||
CDVD.h CDVD_internal.h IsoFStools.h IsoFSdrv.h IsoFScdvd.h CdRom.h \
|
||||
CDVDisoReader.cpp CDVDisoReader.h CDVDaccess.cpp CDVDaccess.h
|
||||
CDVDisoReader.cpp CDVDisoReader.h CDVDaccess.cpp CDVDaccess.h \
|
||||
IsoFileFormats.cpp IsoFileFormats.h
|
||||
|
||||
#SUBDIRS =
|
||||
|
|
Loading…
Reference in New Issue