Skip to content

Commit

Permalink
idk
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanSantiagoYT committed Oct 13, 2024
1 parent 66c0514 commit 18953ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -4379,10 +4379,10 @@ class PlayState extends MusicBeatState
case 'Credits Popup':
{
var string1:String = value1;
if (value1 == '') string1 = SONG.song;
if (value1.length < 1) string1 = SONG.song;
var string2:String = value2;
if (value2 == '') string2 = SONG.songCredit;
var creditsPopup:CreditsPopUp = new CreditsPopUp(FlxG.width, 200, value1, value2);
if (value2.length < 1) string2 = SONG.songCredit;
var creditsPopup:CreditsPopUp = new CreditsPopUp(FlxG.width, 200, string1, string2);
creditsPopup.camera = camHUD;
creditsPopup.scrollFactor.set();
creditsPopup.x = creditsPopup.width * -1;
Expand Down

0 comments on commit 18953ca

Please sign in to comment.