From 3c7c2dfaa10fc837f75d7e71d71b483db343dee3 Mon Sep 17 00:00:00 2001 From: Filoppi Date: Sun, 9 May 2021 13:28:04 +0300 Subject: Implement Cursor Locking and new input focus checks for it --- Source/Core/DolphinNoGUI/MainNoGUI.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp') diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index 7c64a5cbeb..dceecc789c 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -98,6 +98,12 @@ bool Host_RendererHasFocus() return s_platform->IsWindowFocused(); } +bool Host_RendererHasFullFocus() +{ + // Mouse capturing isn't implemented + return Host_RendererHasFocus(); +} + bool Host_RendererIsFullscreen() { return s_platform->IsWindowFullscreen(); -- cgit v1.2.3