mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
GPU: Idle bit should be clear during an incomplete command
This commit is contained in:
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…
Reference in a new issue