mirror of https://github.com/PCSX2/pcsx2.git
Bugfix for CDVDiso memory corruption, which caused random problems when loading specific types of iso images (most commonly MDF types, but could have been a problem on others as well).
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4010 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
116f9ec193
commit
bd31411a4c
|
@ -29,7 +29,7 @@
|
||||||
#include "CDVDisoReader.h"
|
#include "CDVDisoReader.h"
|
||||||
|
|
||||||
static u8 *pbuffer;
|
static u8 *pbuffer;
|
||||||
static u8 cdbuffer[2352] = {0};
|
static u8 cdbuffer[CD_FRAMESIZE_RAW] = {0};
|
||||||
static isoFile iso;
|
static isoFile iso;
|
||||||
|
|
||||||
static int psize, cdtype;
|
static int psize, cdtype;
|
||||||
|
|
Loading…
Reference in New Issue