We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d73f86d commit fe0ab0aCopy full SHA for fe0ab0a
source/funkin/game/PlayState.hx
@@ -674,8 +674,8 @@ class PlayState extends MusicBeatState
674
detailsText = isStoryMode ? ("Story Mode: " + storyWeek.name) : "Freeplay";
675
676
// Checks if cutscene files exists
677
- var cutscenePath = Paths.file('songs/${SONG.meta.name}/cutscene.${Flags.VIDEO_EXT}');
678
- var endCutscenePath = Paths.file('songs/${SONG.meta.name}/cutscene-end.${Flags.VIDEO_EXT}');
+ var cutscenePath = Paths.script('songs/${SONG.meta.name}/cutscene');
+ var endCutscenePath = Paths.script('songs/${SONG.meta.name}/cutscene-end');
679
if (Assets.exists(cutscenePath)) cutscene = cutscenePath;
680
if (Assets.exists(endCutscenePath)) endCutscene = endCutscenePath;
681
0 commit comments