mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: don't compare pointer with 0
This commit is contained in:
parent
41afd85a5d
commit
6f64fc9f84
|
@ -280,7 +280,7 @@ static __fi void _vifCode_MPG(int idx, u32 addr, const u32 *data, int size) {
|
|||
VURegs& VUx = idx ? VU1 : VU0;
|
||||
vifStruct& vifX = GetVifX;
|
||||
u16 vuMemSize = idx ? 0x4000 : 0x1000;
|
||||
pxAssert(VUx.Micro > 0);
|
||||
pxAssert(VUx.Micro);
|
||||
|
||||
vifExecQueue(idx);
|
||||
|
||||
|
|
Loading…
Reference in New Issue