From 3473aba089e33f1184574685d5a4404a89e04d7a Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Fri, 25 Oct 2024 13:54:27 -0400 Subject: [PATCH] fix: fixes the initial camera position on the debug menu --- source/funkin/ui/debug/DebugMenuSubState.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/source/funkin/ui/debug/DebugMenuSubState.hx b/source/funkin/ui/debug/DebugMenuSubState.hx index 45652095..73c24912 100644 --- a/source/funkin/ui/debug/DebugMenuSubState.hx +++ b/source/funkin/ui/debug/DebugMenuSubState.hx @@ -67,6 +67,7 @@ class DebugMenuSubState extends MusicBeatSubState #if sys createItem("OPEN CRASH LOG FOLDER", openLogFolder); #end + onMenuChange(items.members[0]); FlxG.camera.focusOn(new FlxPoint(camFocusPoint.x, camFocusPoint.y + 500)); }