From cf01157b3904028a77a91d86dd1223d9164aa992 Mon Sep 17 00:00:00 2001
From: EliteMasterEric <ericmyllyoja@gmail.com>
Date: Thu, 2 May 2024 03:39:18 -0400
Subject: [PATCH] Mid-song cutscenes should just do nothing after they are
 finished,

---
 source/funkin/play/cutscene/VideoCutscene.hx | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/source/funkin/play/cutscene/VideoCutscene.hx b/source/funkin/play/cutscene/VideoCutscene.hx
index 0939dae38..01a492a77 100644
--- a/source/funkin/play/cutscene/VideoCutscene.hx
+++ b/source/funkin/play/cutscene/VideoCutscene.hx
@@ -339,7 +339,8 @@ class VideoCutscene
       case CutsceneType.ENDING:
         PlayState.instance.endSong(true); // true = right goddamn now
       case CutsceneType.MIDSONG:
-        throw "Not implemented!";
+        // Do nothing.
+        // throw "Not implemented!";
     }
   }
 }
@@ -347,6 +348,6 @@ class VideoCutscene
 enum CutsceneType
 {
   STARTING; // The default cutscene type. Starts the countdown after the video is done.
-  MIDSONG; // TODO: Implement this!
+  MIDSONG; // Does nothing.
   ENDING; // Ends the song after the video is done.
 }