* Fix some more bugs.

This commit is contained in:
iProgramInCpp
2023-08-01 12:05:24 +03:00
parent 328ef4fff5
commit 7fd8c67f13
2 changed files with 5 additions and 6 deletions

View File

@@ -238,10 +238,6 @@ void AppPlatform_windows::recenterMouse()
void AppPlatform_windows::setMouseGrabbed(bool b)
{
// only if stuff has changed do we update
if (m_bGrabbedMouse == b)
return;
m_bGrabbedMouse = b;
if (m_bActuallyGrabbedMouse == (b && m_bIsFocused))