From 995f5b8b111ad84fa1086317b0694ab226069927 Mon Sep 17 00:00:00 2001 From: Valerio Date: Sat, 20 Dec 2025 10:55:29 -0500 Subject: [PATCH] Fixed draw_texture call in score history score method check --- libs/file_navigator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/file_navigator.py b/libs/file_navigator.py index fea876a..bb6f7b3 100644 --- a/libs/file_navigator.py +++ b/libs/file_navigator.py @@ -818,9 +818,9 @@ class ScoreHistory: tex.draw_texture('leaderboard', 'shinuchi', index=self.long) case ScoreMethod.GEN3: if self.curr_difficulty == Difficulty.URA: - tex.draw_texture('leaderboard', index=self.long) + tex.draw_texture('leaderboard', 'normal', index=self.long) else: - tex.draw_texture('leaderboard', index=self.long) + tex.draw_texture('leaderboard', 'normal', index=self.long) tex.draw_texture('leaderboard', 'pts', color=ray.WHITE, index=self.long) tex.draw_texture('leaderboard', 'difficulty', frame=self.curr_difficulty, index=self.long)