From e8c91f0537db9fdb40858cbe23ba4adbee37a5cc Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Mon, 28 Dec 2020 18:40:07 +0000 Subject: [PATCH] MTVU: Stop the buffer filling up when MTVU is disabled --- pcsx2/MTVU.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pcsx2/MTVU.cpp b/pcsx2/MTVU.cpp index 9fb1779233..e7536d4326 100644 --- a/pcsx2/MTVU.cpp +++ b/pcsx2/MTVU.cpp @@ -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(); }