Skip to content

Commit

Permalink
Work around X.h defining None in PlatformX11
Browse files Browse the repository at this point in the history
  • Loading branch information
Pokechu22 committed Feb 28, 2021
1 parent 8dbb3ea commit 8d1d45c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinNoGUI/PlatformX11.cpp
Expand Up @@ -46,7 +46,7 @@ class PlatformX11 : public Platform

Display* m_display = nullptr;
Window m_window = {};
Cursor m_blank_cursor = None;
Cursor m_blank_cursor = 0L; // None
#if defined(HAVE_XRANDR) && HAVE_XRANDR
X11Utils::XRRConfiguration* m_xrr_config = nullptr;
#endif
Expand Down

0 comments on commit 8d1d45c

Please sign in to comment.