From e39fe457ec64d8a6daa7432e35c82a7d68d1fa7a Mon Sep 17 00:00:00 2001 From: Kolziak <53307233+Kolziak@users.noreply.github.com> Date: Mon, 16 Jun 2025 13:47:52 +0200 Subject: [PATCH 1/2] fixed the game crashing --- source/funkin/editors/charter/ChartDataScreen.hx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/funkin/editors/charter/ChartDataScreen.hx b/source/funkin/editors/charter/ChartDataScreen.hx index 71219726..ca395764 100644 --- a/source/funkin/editors/charter/ChartDataScreen.hx +++ b/source/funkin/editors/charter/ChartDataScreen.hx @@ -76,8 +76,6 @@ class ChartDataScreen extends UISubstateWindow { } public function saveInfo() { - UIUtil.confirmUISelections(this); - var oldData:{stage:String, speed:Float} = {stage: PlayState.SONG.stage, speed: PlayState.SONG.scrollSpeed}; PlayState.SONG.stage = stageTextBox.label.text; @@ -100,4 +98,4 @@ class ChartDataScreen extends UISubstateWindow { super.destroy(); FlxG.cameras.remove(strumLineCam); } -} \ No newline at end of file +} From 5a9502c606cea45799d70fe5438c3d7c0250f41b Mon Sep 17 00:00:00 2001 From: Kolziak Date: Mon, 16 Jun 2025 13:50:59 +0200 Subject: [PATCH 2/2] antialiasing by default --- source/funkin/editors/stage/StageEditor.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/source/funkin/editors/stage/StageEditor.hx b/source/funkin/editors/stage/StageEditor.hx index da9c8518..717f7cb4 100644 --- a/source/funkin/editors/stage/StageEditor.hx +++ b/source/funkin/editors/stage/StageEditor.hx @@ -532,6 +532,7 @@ class StageEditor extends UIState { sprite.extra.set(exID("parentNode"), stage.stageXML.x); sprite.extra.set(exID("highMemory"), false); sprite.extra.set(exID("lowMemory"), false); + sprite.antialiasing = true; xmlMap.set(sprite, node); var button:StageSpriteButton = new StageSpriteButton(0, 0, sprite, node);