summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/community/xbmc-svn/xbmc-safe-fullscreen.patch
diff options
context:
space:
mode:
authorNathan Harris <nharris@eoimaging.com>2009-07-08 00:33:14 (GMT)
committerNathan Harris <nharris@eoimaging.com>2009-07-08 00:33:14 (GMT)
commite5ea690f0271ee1306394a38138072b2e2b66d1b (patch)
tree985c4bd86f82a7dcac5f3bdeb9c162f006176e16 /abs/extra-testing/community/xbmc-svn/xbmc-safe-fullscreen.patch
parentb5cfd91270e2d8fe458b020d115cd6720c2aa9dd (diff)
downloadlinhes_pkgbuild-e5ea690f0271ee1306394a38138072b2e2b66d1b.zip
linhes_pkgbuild-e5ea690f0271ee1306394a38138072b2e2b66d1b.tar.gz
linhes_pkgbuild-e5ea690f0271ee1306394a38138072b2e2b66d1b.tar.bz2
xbmc-svn: bumped to 21337
Diffstat (limited to 'abs/extra-testing/community/xbmc-svn/xbmc-safe-fullscreen.patch')
-rw-r--r--abs/extra-testing/community/xbmc-svn/xbmc-safe-fullscreen.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/abs/extra-testing/community/xbmc-svn/xbmc-safe-fullscreen.patch b/abs/extra-testing/community/xbmc-svn/xbmc-safe-fullscreen.patch
deleted file mode 100644
index 2da0c91..0000000
--- a/abs/extra-testing/community/xbmc-svn/xbmc-safe-fullscreen.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-Index: xbmc/Application.cpp
-===================================================================
---- xbmc/Application.cpp (revision 20059)
-+++ xbmc/Application.cpp (working copy)
-@@ -877,6 +877,8 @@
- #endif
-
- // set GUI res and force the clear of the screen
-+ if (g_guiSettings.GetBool("videoscreen.safefull"))
-+ g_guiSettings.m_LookAndFeelResolution = AUTORES;
- g_graphicsContext.SetVideoResolution(g_guiSettings.m_LookAndFeelResolution, TRUE, true);
-
- #ifdef _WIN32PC
-@@ -953,6 +955,9 @@
- time(&seconds);
- srand((unsigned int)seconds);
-
-+ if (g_guiSettings.GetBool("videoscreen.safefull"))
-+ g_graphicsContext.ToggleFullScreenRoot();
-+
- return CXBApplicationEx::Create(hWnd);
- }
-
-Index: GUISettings.cpp
-===================================================================
---- xbmc/GUISettings.cpp (revision 20824)
-+++ xbmc/GUISettings.cpp (working copy)
-@@ -651,6 +651,7 @@
- #else
- AddInt(6, "videoscreen.vsync", 13105, DEFAULT_VSYNC, VSYNC_DISABLED, 1, VSYNC_DRIVER, SPIN_CONTROL_TEXT);
- #endif
-+ AddBool(7, "videoscreen.safefull", 13121, false);
- AddCategory(7, "filelists", 14018);
- AddBool(1, "filelists.hideparentdiritems", 13306, false);
- AddBool(2, "filelists.hideextensions", 497, false);