Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into cne-pr
Browse files Browse the repository at this point in the history
  • Loading branch information
mcagabe19 committed Oct 30, 2024
2 parents 4f9dfbc + cb54e5e commit b618014
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 26 deletions.
7 changes: 0 additions & 7 deletions assets/data/config/credits.xml

This file was deleted.

17 changes: 0 additions & 17 deletions assets/data/config/options.xml

This file was deleted.

4 changes: 2 additions & 2 deletions source/funkin/game/cutscenes/DialogueCutscene.hx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class DialogueCutscene extends Cutscene {
musicVolume: node.has.musicVolume ? (volume = Std.parseFloat(node.att.speed).getDefault(0.8)) : null,
changeMusic: node.has.changeMusic ? FlxG.sound.load(Paths.music(node.att.changeMusic), volume, true) : null,
playSound: node.has.playSound ? FlxG.sound.load(Paths.sound(node.att.playSound)) : null,
nextSound: node.has.nextSound ? FlxG.sound.load(Paths.music(node.att.nextSound)) : null,
nextSound: node.has.nextSound ? FlxG.sound.load(Paths.sound(node.att.nextSound)) : null,
textSound: null
};

Expand Down Expand Up @@ -220,4 +220,4 @@ typedef DialogueLine = {
var nextSound:FlxSound;
var textSound:FlxSound;
var changeDefAnim:String;
}
}

0 comments on commit b618014

Please sign in to comment.