mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-17 22:25:37 +00:00
GPU: Fix incorrect value for status bit 13
Fixes openbios boot animation.
This commit is contained in:
parent
497a5b8dd1
commit
13c5ee8bfb
|
@ -909,7 +909,7 @@ void GPU::CRTCTickEvent(TickCount ticks)
|
|||
if (m_GPUSTAT.vertical_interlace)
|
||||
{
|
||||
m_crtc_state.interlaced_field ^= 1u;
|
||||
m_GPUSTAT.interlaced_field = m_crtc_state.interlaced_field;
|
||||
m_GPUSTAT.interlaced_field = !m_crtc_state.interlaced_field;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue