mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 00:29:11 +01:00
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:
parent
4501aeefbe
commit
5bbd34637b
@ -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__)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user