Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…into dev
  • Loading branch information
Sil333033 committed Mar 4, 2024
2 parents d71cf85 + 80d097b commit cb40de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/settings/dolphin_passport/passport.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ static void render_callback(Canvas* canvas, void* _ctx) {
if(stats->level == DOLPHIN_LEVEL_COUNT + 1) {
xp_progress = 0;
} else {
xp_progress = xp_to_levelup * 64 / xp_target;
xp_progress = (xp_target - xp_have) * 64 / xp_target;
}

// multipass
Expand Down

0 comments on commit cb40de1

Please sign in to comment.