From ac7d001b772c31cc4be1440ec0f79930658f8550 Mon Sep 17 00:00:00 2001 From: Stinko <145304742+StinkTheStinker@users.noreply.github.com> Date: Tue, 4 Feb 2025 08:53:52 -0500 Subject: [PATCH] fix the cursor on playstate closes issue #876 --- source/PlayState.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/source/PlayState.hx b/source/PlayState.hx index 6e14250aedc..439753afe36 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -451,6 +451,7 @@ class PlayState extends MusicBeatState override public function create() { + FlxG.mouse.visible = false; //Stops playing on a height that isn't divisible by 2 if (ClientPrefs.ffmpegMode && ClientPrefs.resolution != null) { var resolutionValue = cast(ClientPrefs.resolution, String);