From 5bbd34637b5717914af6c6e8f84c6532ac5241e4 Mon Sep 17 00:00:00 2001 From: Jules Blok Date: Mon, 28 Jul 2014 22:45:53 +0200 Subject: [PATCH] CFrame: Don't check the video config fullscreen setting. Checking this flag could sometimes incorrectly have the UI assume fullscreen is already off when we're still exiting. --- Source/Core/DolphinWX/Frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Frame.cpp b/Source/Core/DolphinWX/Frame.cpp index 2f65d77284..1659367488 100644 --- a/Source/Core/DolphinWX/Frame.cpp +++ b/Source/Core/DolphinWX/Frame.cpp @@ -450,7 +450,7 @@ bool CFrame::RendererIsFullscreen() if (Core::GetState() == Core::CORE_RUN || Core::GetState() == Core::CORE_PAUSE) { - fullscreen = m_RenderFrame->IsFullScreen() && g_Config.bFullscreen; + fullscreen = m_RenderFrame->IsFullScreen(); } #if defined(__APPLE__)