mirror of https://github.com/PCSX2/pcsx2.git
MTVU: Stop the buffer filling up when MTVU is disabled
This commit is contained in:
parent
8190379519
commit
e8c91f0537
|
@ -477,6 +477,7 @@ void VU_Thread::WriteCol(vifStruct& _vif)
|
||||||
Write(MTVU_VIF_WRITE_COL);
|
Write(MTVU_VIF_WRITE_COL);
|
||||||
Write(&_vif.MaskCol, sizeof(_vif.MaskCol));
|
Write(&_vif.MaskCol, sizeof(_vif.MaskCol));
|
||||||
CommitWritePos();
|
CommitWritePos();
|
||||||
|
KickStart();
|
||||||
}
|
}
|
||||||
|
|
||||||
void VU_Thread::WriteRow(vifStruct& _vif)
|
void VU_Thread::WriteRow(vifStruct& _vif)
|
||||||
|
@ -486,4 +487,5 @@ void VU_Thread::WriteRow(vifStruct& _vif)
|
||||||
Write(MTVU_VIF_WRITE_ROW);
|
Write(MTVU_VIF_WRITE_ROW);
|
||||||
Write(&_vif.MaskRow, sizeof(_vif.MaskRow));
|
Write(&_vif.MaskRow, sizeof(_vif.MaskRow));
|
||||||
CommitWritePos();
|
CommitWritePos();
|
||||||
|
KickStart();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue