MTVU: Stop the buffer filling up when MTVU is disabled

This commit is contained in:
refractionpcsx2 2020-12-28 18:40:07 +00:00
parent 8190379519
commit e8c91f0537
1 changed files with 2 additions and 0 deletions

View File

@ -477,6 +477,7 @@ void VU_Thread::WriteCol(vifStruct& _vif)
Write(MTVU_VIF_WRITE_COL);
Write(&_vif.MaskCol, sizeof(_vif.MaskCol));
CommitWritePos();
KickStart();
}
void VU_Thread::WriteRow(vifStruct& _vif)
@ -486,4 +487,5 @@ void VU_Thread::WriteRow(vifStruct& _vif)
Write(MTVU_VIF_WRITE_ROW);
Write(&_vif.MaskRow, sizeof(_vif.MaskRow));
CommitWritePos();
KickStart();
}