Skip to content

Commit

Permalink
fix crash
Browse files Browse the repository at this point in the history
  • Loading branch information
Vortex2Oblivion committed Nov 8, 2024
1 parent 897c29c commit e9ca0c5
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions source/substates/ResultsSubstate.hx
Original file line number Diff line number Diff line change
Expand Up @@ -348,10 +348,15 @@ class ResultsSubstate extends MusicBeatSubstate {
// resultsAnim.zIndex = 1200;
resultsAnim.antialiasing = Options.getData("antialiasing");
add(resultsAnim);
new FlxTimer().start(6 / 24, _ -> {
resultsAnim.visible = true;
resultsAnim.animation.play("result");
});
try{
new FlxTimer().start(6 / 24, _ -> {
resultsAnim.visible = true;
resultsAnim.animation.play("result");
});
}
catch(e){

}

ratingsPopin.animation.addByPrefix("idle", "Categories", 24, false);
ratingsPopin.visible = false;
Expand Down

0 comments on commit e9ca0c5

Please sign in to comment.