GPU: Idle bit should be clear during an incomplete command

pull/891/head
Connor McLaughlin 4 years ago
parent cf2599b6c7
commit f990d6ab3b

@ -289,7 +289,7 @@ void GPU::UpdateGPUIdle()
switch (m_blitter_state)
{
case BlitterState::Idle:
m_GPUSTAT.gpu_idle = (m_pending_command_ticks <= 0);
m_GPUSTAT.gpu_idle = (m_pending_command_ticks <= 0 && m_fifo.IsEmpty());
break;
case BlitterState::WritingVRAM:

Loading…
Cancel
Save