summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinNoGUI/MainNoGUI.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@innovatetechnologi.es>2018-04-14 16:48:49 +0200
committerLéo Lam <leo@innovatetechnologi.es>2018-04-14 17:14:38 +0200
commit2f22c76db18db0b6b360ebf1b406c81196ef3a9c (patch)
tree6f1a65fdd9064aabf3b3612e49e19a053b398dc2 /Source/Core/DolphinNoGUI/MainNoGUI.cpp
parent62269572e40b8767da6848c77ba677a9a610c3a4 (diff)
UICommon: Avoid including Xrandr.h
Xlib has really terrible headers that declare non-namespaced macros and typedefs for common words. Just wasted 10 minutes trying to figure out why a unit test failed to build before I remembered it was Xrandr.h conflicting with our enum class members again. To fix the issue, this removes the Display* parameter from the EnableScreensaver function (which was unused) so we don't have to include Xrandr.h anymore.
Diffstat (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp')
-rw-r--r--Source/Core/DolphinNoGUI/MainNoGUI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp
index def748832f..0d7a84137e 100644
--- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp
+++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp
@@ -191,7 +191,7 @@ class PlatformX11 : public Platform
s_window_handle = (void*)win;
if (SConfig::GetInstance().bDisableScreenSaver)
- X11Utils::InhibitScreensaver(dpy, win, true);
+ X11Utils::InhibitScreensaver(win, true);
#if defined(HAVE_XRANDR) && HAVE_XRANDR
XRRConfig = new X11Utils::XRRConfiguration(dpy, win);