Renderer: Don't attempt to switch to exclusive fullscreen if "render to main" is enabled.

This commit is contained in:
Jules Blok 2014-07-11 15:53:55 +02:00
parent 9064bf147d
commit 3400871992
1 changed files with 1 additions and 1 deletions

View File

@ -938,7 +938,7 @@ void Renderer::SwapImpl(u32 xfbAddr, u32 fbWidth, u32 fbHeight,const EFBRectangl
SetWindowSize(fbWidth, fbHeight);
const bool windowResized = CheckForResize();
const bool fullscreen = g_ActiveConfig.bFullscreen;
const bool fullscreen = g_ActiveConfig.bFullscreen && !SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain;
bool fullscreen_changed = s_last_fullscreen_mode != fullscreen;