summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorskidau <skidau@gmail.com>2015-05-06 12:28:45 +1000
committerskidau <skidau@gmail.com>2015-05-06 12:28:45 +1000
commit571cdcddd8f38573a40f906e5f13c3ba2f5621ea (patch)
tree28eb286d0573dd7101b1606fd190e59aa9feda3a /Source/Core
parent6414cdabb2ae7762f2d98427b9ff024af07bb959 (diff)
parent441976e09b551cd9ff79f2f6e83232e987c82f24 (diff)
Merge pull request #2340 from dibas/testing
Show the cursor in os x fullscreen by default. Fixes issue 8376.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/FrameTools.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp
index aac0f437a8..08ebc2e65c 100644
--- a/Source/Core/DolphinWX/FrameTools.cpp
+++ b/Source/Core/DolphinWX/FrameTools.cpp
@@ -960,11 +960,6 @@ void CFrame::ToggleDisplayMode(bool bFullscreen)
#elif defined(HAVE_XRANDR) && HAVE_XRANDR
if (SConfig::GetInstance().m_LocalCoreStartupParameter.strFullscreenResolution != "Auto")
m_XRRConfig->ToggleDisplayMode(bFullscreen);
-#elif defined __APPLE__
- if (bFullscreen)
- CGDisplayHideCursor(CGMainDisplayID());
- else
- CGDisplayShowCursor(CGMainDisplayID());
#endif
}