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:
Jake.Stine 2010-11-09 13:36:12 +00:00
parent 116f9ec193
commit bd31411a4c
1 changed files with 1 additions and 1 deletions

View File

@ -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;