diff --git a/pcsx2/Vif.cpp b/pcsx2/Vif.cpp index c07ed1a0a1..33aa79c718 100644 --- a/pcsx2/Vif.cpp +++ b/pcsx2/Vif.cpp @@ -229,7 +229,6 @@ __fi void vif1FBRST(u32 value) { // just stoppin the VIF (linuz). vif1Regs.stat.VSS = true; vif1Regs.stat.VPS = VPS_IDLE; - cpuRegs.interrupt &= ~((1 << 1) | (1 << 10)); //Stop all vif1 DMA's vif1.vifstalled.enabled = VifStallEnable(vif1ch); vif1.vifstalled.value = VIF_IRQ_STALL; } diff --git a/pcsx2/Vif0_Dma.cpp b/pcsx2/Vif0_Dma.cpp index fbce385bb0..e9a3925f39 100644 --- a/pcsx2/Vif0_Dma.cpp +++ b/pcsx2/Vif0_Dma.cpp @@ -224,9 +224,9 @@ __fi void vif0Interrupt() if (!vif0.done) { - if (!(dmacRegs.ctrl.DMAE)) + if (!(dmacRegs.ctrl.DMAE) || vif0Regs.stat.VSS) //Stopped or DMA Disabled { - Console.WriteLn("vif0 dma masked"); + //Console.WriteLn("vif0 dma masked"); return; } diff --git a/pcsx2/Vif1_Dma.cpp b/pcsx2/Vif1_Dma.cpp index 6fc6bca532..8841098954 100644 --- a/pcsx2/Vif1_Dma.cpp +++ b/pcsx2/Vif1_Dma.cpp @@ -376,9 +376,9 @@ __fi void vif1Interrupt() if (!vif1.done) { - if (!(dmacRegs.ctrl.DMAE)) + if (!(dmacRegs.ctrl.DMAE) || vif1Regs.stat.VSS) //Stopped or DMA Disabled { - Console.WriteLn("vif1 dma masked"); + //Console.WriteLn("vif1 dma masked"); return; }