diff --git a/DemoUtilities/Input.cs b/DemoUtilities/Input.cs index c7b2a7d81..3e3e38a5e 100644 --- a/DemoUtilities/Input.cs +++ b/DemoUtilities/Input.cs @@ -238,11 +238,11 @@ public void Start() //This is pretty doofy, but it works reasonably well and we don't have easy access to the windows-provided capture stuff through opentk (that I'm aware of?). //Could change it later if it matters, but realistically it won't matter. MousePosition = WindowCenter; - window.CursorVisible = false; + if (window.CursorVisible) window.CursorVisible = false; } else { - window.CursorVisible = true; + if (!window.CursorVisible) window.CursorVisible = true; } }