mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: initialize the block pointer
There is a check on it on the resize function
This commit is contained in:
parent
ac8f4e69d6
commit
f092f9045c
|
@ -73,7 +73,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
BaseBlockArray (s32 size) : _Reserved(0),
|
BaseBlockArray (s32 size) : _Reserved(0),
|
||||||
_Size(0)
|
_Size(0), blocks(NULL)
|
||||||
{
|
{
|
||||||
if(size > 0) {
|
if(size > 0) {
|
||||||
resize(size);
|
resize(size);
|
||||||
|
|
Loading…
Reference in New Issue