mirror of
https://github.com/stenzek/duckstation.git
synced 2026-02-10 08:24:32 +00:00
GPU: Remove implicit bool conversion
This commit is contained in:
@@ -1230,7 +1230,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 = BoolToUInt8(!ConvertToBoolUnchecked(m_crtc_state.interlaced_field));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user