From 13c5ee8bfb4f0f8fc40f76b39de58b5d9b473dc3 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 29 Sep 2021 10:48:53 +1000 Subject: [PATCH] GPU: Fix incorrect value for status bit 13 Fixes openbios boot animation. --- src/core/gpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/gpu.cpp b/src/core/gpu.cpp index 0eb47979b..2fd797456 100644 --- a/src/core/gpu.cpp +++ b/src/core/gpu.cpp @@ -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 {