From ea8b905f0220cb6bf21529b76f3802c0afc72992 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 2 Jul 2019 22:39:09 -0700 Subject: [PATCH] Missed a call to SDL_SetRelativeMouseMode --- app/streaming/session.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/streaming/session.cpp b/app/streaming/session.cpp index f30945fb..e0bdb3d7 100644 --- a/app/streaming/session.cpp +++ b/app/streaming/session.cpp @@ -1024,7 +1024,7 @@ void Session::exec(int displayOriginX, int displayOriginY) // This prevents the mouse from becoming trapped inside // Moonlight when it's halted at a debug break. if (m_Preferences->windowMode != StreamingPreferences::WM_WINDOWED) { - SDL_SetRelativeMouseMode(SDL_TRUE); + m_InputHandler->setCaptureActive(true); } #endif