mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-01 08:25:43 -04: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…
x
Reference in New Issue
Block a user