Qt: Fix inverted fullscreen condition

This commit is contained in:
Stenzek
2025-11-29 13:38:15 +10:00
parent 480d002324
commit 3d27de7835

View File

@@ -2812,7 +2812,7 @@ void Host::ReleaseRenderWindow()
bool Host::CanChangeFullscreenMode(bool new_fullscreen_state)
{
// Don't mess with fullscreen while locked.
return QtHost::IsSystemLocked();
return !QtHost::IsSystemLocked();
}
void EmuThread::updatePerformanceCounters(const GPUBackend* gpu_backend)