Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #677 from Armada651/use_fullscreen
Frame: Only prevent exclusive fullscreen switches when the emulator is paused
  • Loading branch information
delroth committed Jul 26, 2014
2 parents 957a399 + 1f24122 commit 96cfbd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/Frame.cpp
Expand Up @@ -1191,7 +1191,7 @@ void CFrame::DoFullscreen(bool enable_fullscreen)
{
if (!g_Config.bBorderlessFullscreen &&
!SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain &&
Core::GetState() != Core::CORE_RUN)
Core::GetState() == Core::CORE_PAUSE)
{
// A responsive renderer is required for exclusive fullscreen, but the
// renderer can only respond in the running state. Therefore we ignore
Expand Down

0 comments on commit 96cfbd1

Please sign in to comment.