mirror of https://github.com/PCSX2/pcsx2.git
A quick fix to prevent creating dumps with the built in iso code from crashing.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1698 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
915d0c6953
commit
a159d82f8b
|
@ -21,7 +21,7 @@
|
|||
#include "IopCommon.h"
|
||||
#include "CDVD/CDVDaccess.h"
|
||||
|
||||
extern char isoFileName[];
|
||||
//extern char isoFileName[];
|
||||
|
||||
#define btoi(b) ((b)/16*10 + (b)%16) /* BCD to u_char */
|
||||
#define itob(i) ((i)/10*16 + (i)%10) /* u_char to BCD */
|
||||
|
|
|
@ -532,5 +532,5 @@ CDVD_API CDVDapi_NoDisc =
|
|||
NODISCgetBuffer2,
|
||||
NODISCgetDualInfo,
|
||||
|
||||
NULL
|
||||
NODISCgetUniqueFilename
|
||||
};
|
||||
|
|
|
@ -415,5 +415,5 @@ CDVD_API CDVDapi_Iso =
|
|||
ISOgetBuffer2,
|
||||
ISOgetDualInfo,
|
||||
|
||||
NULL
|
||||
ISOgetUniqueFilename
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue