diff --git a/source/funkin/game/cutscenes/ScriptedCutscene.hx b/source/funkin/game/cutscenes/ScriptedCutscene.hx index 65d489582..b17639ebf 100644 --- a/source/funkin/game/cutscenes/ScriptedCutscene.hx +++ b/source/funkin/game/cutscenes/ScriptedCutscene.hx @@ -72,7 +72,7 @@ class ScriptedCutscene extends Cutscene { #if REGION public function startDialogue(path:String, ?callback:Void->Void) { persistentDraw = true; - openSubState(new VideoCutscene(path, function() { + openSubState(new DialogueCutscene(path, function() { if (callback != null) callback(); })); @@ -83,4 +83,4 @@ class ScriptedCutscene extends Cutscene { private inline function get_isDialoguePlaying() return subState is DialogueCutscene; #end -} \ No newline at end of file +}