Skip to content

Commit 34f7eb2

Browse files
committed
Merge branch 'Archipelago' of https://github.com/Z11Coding/Mixtape-Engine-Rework into Archipelago
2 parents 0e34f26 + 9874b9f commit 34f7eb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/states/PlayState.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2034,7 +2034,7 @@ class PlayState extends MusicBeatState
20342034

20352035
if (SONG.needsVoices) {
20362036
if ((generalVocals != null && generalVocals.length > 1) || (playerVocals != null && playerVocals.length > 1)) {
2037-
vocalvisual = new AudioDisplay(vocals, healthBar.x, healthBar.y + 30, Std.int(healthBar.width), Std.int(FlxG.height / 2), 50, 2, FlxColor.fromRGB(boyfriend.healthColorArray[0], boyfriend.healthColorArray[1], boyfriend.healthColorArray[2]));
2037+
vocalvisual = new AudioDisplay(vocals, healthBar.x, healthBar.y + 30, Std.int(healthBar.width), Std.int(FlxG.height / 12), 50, 2, FlxColor.fromRGB(boyfriend.healthColorArray[0], boyfriend.healthColorArray[1], boyfriend.healthColorArray[2]));
20382038
vocalvisual.scrollFactor.set(0, 0);
20392039
vocalvisual.flipY = true;
20402040
add(vocalvisual);
@@ -2043,7 +2043,7 @@ class PlayState extends MusicBeatState
20432043
}
20442044

20452045
if (opponentVocals != null && opponentVocals.length > 1) {
2046-
oppvisual = new AudioDisplay(opponentVocals, healthBar.x, healthBar.y + 30, Std.int(healthBar.width), Std.int(FlxG.height / 2), 50, 2, FlxColor.fromRGB(dad.healthColorArray[0], dad.healthColorArray[1], dad.healthColorArray[2]));
2046+
oppvisual = new AudioDisplay(opponentVocals, healthBar.x, healthBar.y + 30, Std.int(healthBar.width), Std.int(FlxG.height / 12), 50, 2, FlxColor.fromRGB(dad.healthColorArray[0], dad.healthColorArray[1], dad.healthColorArray[2]));
20472047
oppvisual.scrollFactor.set(0, 0);
20482048
oppvisual.flipY = true;
20492049
add(oppvisual);

0 commit comments

Comments
 (0)