1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-24 17:49:52 +01:00

fix invisible cursor on unlock (YR)

This commit is contained in:
FunkyFr3sh 2018-11-16 12:31:50 +01:00
parent c2254f0d9a
commit 20205db5d5

View File

@ -312,7 +312,7 @@ void mouse_unlock()
if (GetCursorInfo(&ci) && ci.flags == 0) if (GetCursorInfo(&ci) && ci.flags == 0)
{ {
ddraw->hidecursor = TRUE; ddraw->hidecursor = TRUE;
ShowCursor(TRUE); while (ShowCursor(TRUE) < 0);
} }
} }