diff options
author | elupus <elupus@svn> | 2009-10-01 18:03:17 +0000 |
---|---|---|
committer | elupus <elupus@svn> | 2009-10-01 18:03:17 +0000 |
commit | 95705e126d40debd26fc4477d27b38e7d420e43c (patch) | |
tree | e57a5a74a1e83c92ce51930b6cd68d2555f00896 /guilib/GraphicContext.cpp | |
parent | 50dbf765db0bd859dab1467278f0001fbcd7c114 (diff) |
fixed: fullscreen switching was broken if xbmc was launched with -fs commandline parameter
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23299 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GraphicContext.cpp')
-rw-r--r-- | guilib/GraphicContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guilib/GraphicContext.cpp b/guilib/GraphicContext.cpp index 5c094a6562..d3acfae18f 100644 --- a/guilib/GraphicContext.cpp +++ b/guilib/GraphicContext.cpp @@ -339,7 +339,7 @@ void CGraphicContext::SetVideoResolution(RESOLUTION res, bool forceUpdate) return; } - if (res >= RES_DESKTOP || g_advancedSettings.m_startFullScreen) + if (res >= RES_DESKTOP) { g_advancedSettings.m_fullScreen = true; m_bFullScreenRoot = true; |