GPU: Fix GP0(1Fh) locking up emulator

This commit is contained in:
Connor McLaughlin 2020-03-29 01:12:54 +10:00
parent 5dbdc0b60c
commit 46239e6758

View File

@ -118,7 +118,8 @@ bool GPU::HandleInterruptRequestCommand(const u32*& command_ptr, u32 command_siz
m_GPUSTAT.interrupt_request = true; m_GPUSTAT.interrupt_request = true;
m_interrupt_controller->InterruptRequest(InterruptController::IRQ::GPU); m_interrupt_controller->InterruptRequest(InterruptController::IRQ::GPU);
} }
command_ptr++;
EndCommand(); EndCommand();
return true; return true;
} }