Gif: Remove MTVU spam that isn't required

Solves stuttering in MTVU mode in some games, and gets rid of some annoying asserts which mean nothing.
This commit is contained in:
refractionpcsx2 2021-04-05 04:45:04 +01:00
parent c61566dec0
commit b60765e976
1 changed files with 1 additions and 16 deletions

View File

@ -109,22 +109,7 @@ bool Gif_HandlerAD_MTVU(u8* pMem)
u32 reg = pMem[8];
u32* data = (u32*)pMem;
if (reg == 0x50)
{
Console.Error("GIF Handler Debug - BITBLTBUF");
return 1;
}
else if (reg == 0x52)
{
Console.Error("GIF Handler Debug - TRXREG");
return 1;
}
else if (reg == 0x53)
{
Console.Error("GIF Handler Debug - TRXDIR");
return 1;
}
else if (reg == 0x60)
if (reg == 0x60)
{ // SIGNAL
GUNIT_WARN("GIF Handler - SIGNAL");
if (vu1Thread.gsInterrupts.load(std::memory_order_acquire) & VU_Thread::InterruptFlagSignal)