From 3fe5fdc60f6fb177eb15334553520cb178f0cb67 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 1 Sep 2014 18:12:47 +0200 Subject: [PATCH] xbmc: add patch to revert 5814e7f, which causes to not have the (full) list of avaible screenresolutions, so we cant use our own Signed-off-by: Stephan Raue --- .../xbmc/patches/xbmc-999.93-revert-5814e7f.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/mediacenter/xbmc/patches/xbmc-999.93-revert-5814e7f.patch diff --git a/packages/mediacenter/xbmc/patches/xbmc-999.93-revert-5814e7f.patch b/packages/mediacenter/xbmc/patches/xbmc-999.93-revert-5814e7f.patch new file mode 100644 index 0000000000..9d5fca93a4 --- /dev/null +++ b/packages/mediacenter/xbmc/patches/xbmc-999.93-revert-5814e7f.patch @@ -0,0 +1,12 @@ +diff -Naur xbmc-14-0b1a6eb/xbmc/windowing/X11/XRandR.cpp xbmc-14-0b1a6eb.patch/xbmc/windowing/X11/XRandR.cpp +--- xbmc-14-0b1a6eb/xbmc/windowing/X11/XRandR.cpp 2014-09-01 09:53:24.000000000 +0200 ++++ xbmc-14-0b1a6eb.patch/xbmc/windowing/X11/XRandR.cpp 2014-09-01 17:39:11.816218099 +0200 +@@ -74,7 +74,7 @@ + CStdString cmd; + cmd = getenv("XBMC_BIN_HOME"); + cmd += "/xbmc-xrandr"; +- cmd = StringUtils::Format("%s -q --screen %d --current", cmd.c_str(), screennum); ++ cmd = StringUtils::Format("%s -q --screen %d", cmd.c_str(), screennum); + + FILE* file = popen(cmd.c_str(),"r"); + if (!file)