pcsx2: initialize the block pointer

There is a check on it on the resize function
This commit is contained in:
Gregory Hainaut 2015-09-10 15:56:19 +02:00
parent ac8f4e69d6
commit f092f9045c
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public:
}
BaseBlockArray (s32 size) : _Reserved(0),
_Size(0)
_Size(0), blocks(NULL)
{
if(size > 0) {
resize(size);