Skip to content

Commit

Permalink
god
Browse files Browse the repository at this point in the history
i hope this fixes the android pause substate crashes
  • Loading branch information
JordanSantiagoYT committed Nov 8, 2023
1 parent f65d696 commit 7f00362
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/PauseSubState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -469,11 +469,11 @@ class PauseSubState extends MusicBeatSubstate

function updateSkipTextStuff()
{
if(skipTimeText == null || skipTimeTracker == null) return;

if(skipTimeText != null || skipTimeTracker != null) {
skipTimeText.x = skipTimeTracker.x + skipTimeTracker.width + 60;
skipTimeText.y = skipTimeTracker.y;
skipTimeText.visible = (skipTimeTracker.alpha >= 1);
}
}

function updateSkipTimeText()
Expand Down

0 comments on commit 7f00362

Please sign in to comment.