From c1cc47609409018f1d96900b8b2f9daa2ac76b3d Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sat, 18 Feb 2023 14:03:14 +0100 Subject: [PATCH] source/Platform/Win32/Win32Display.cpp: Tab indentation fix. --- source/Platform/Win32/Win32Display.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/Platform/Win32/Win32Display.cpp b/source/Platform/Win32/Win32Display.cpp index a426c7c..7e89676 100644 --- a/source/Platform/Win32/Win32Display.cpp +++ b/source/Platform/Win32/Win32Display.cpp @@ -165,9 +165,9 @@ void Win32Display::grabCursor(bool value) { if (value) { RECT rect; - GetClientRect(m_handle, &rect); - MapWindowPoints(m_handle, NULL, reinterpret_cast(&rect), 2); - ClipCursor(&rect); + GetClientRect(m_handle, &rect); + MapWindowPoints(m_handle, NULL, reinterpret_cast(&rect), 2); + ClipCursor(&rect); } else { ClipCursor(NULL); }