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 0251fe8 commit d73f86dCopy full SHA for d73f86d
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.script('songs/${SONG.meta.name}/cutscene');
678
- var endCutscenePath = Paths.script('songs/${SONG.meta.name}/cutscene-end');
+ var cutscenePath = Paths.file('songs/${SONG.meta.name}/cutscene.${Flags.VIDEO_EXT}');
+ var endCutscenePath = Paths.file('songs/${SONG.meta.name}/cutscene-end.${Flags.VIDEO_EXT}');
679
if (Assets.exists(cutscenePath)) cutscene = cutscenePath;
680
if (Assets.exists(endCutscenePath)) endCutscene = endCutscenePath;
681
0 commit comments