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:
arcum42 2009-08-28 16:12:05 +00:00
parent 915d0c6953
commit a159d82f8b
3 changed files with 3 additions and 3 deletions

View File

@ -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 */

View File

@ -532,5 +532,5 @@ CDVD_API CDVDapi_NoDisc =
NODISCgetBuffer2,
NODISCgetDualInfo,
NULL
NODISCgetUniqueFilename
};

View File

@ -415,5 +415,5 @@ CDVD_API CDVDapi_Iso =
ISOgetBuffer2,
ISOgetDualInfo,
NULL
ISOgetUniqueFilename
};