mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-17 03:15:39 +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)
|
switch (m_blitter_state)
|
||||||
{
|
{
|
||||||
case BlitterState::Idle:
|
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;
|
break;
|
||||||
|
|
||||||
case BlitterState::WritingVRAM:
|
case BlitterState::WritingVRAM:
|
||||||
|
|
Loading…
Reference in a new issue