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.
This commit is contained in:
Jules Blok 2014-07-28 22:45:53 +02:00
parent 4501aeefbe
commit 5bbd34637b
1 changed files with 1 additions and 1 deletions

View File

@ -450,7 +450,7 @@ bool CFrame::RendererIsFullscreen()
if (Core::GetState() == Core::CORE_RUN || Core::GetState() == Core::CORE_PAUSE) 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__) #if defined(__APPLE__)