1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-06 20:37:56 +00:00

rogueviz:: in rvcol, renamed leaderboards to mention the name of the game first

This commit is contained in:
Zeno Rogue
2025-06-25 23:55:41 +02:00
parent 408b920039
commit fc63e540f0
3 changed files with 6 additions and 6 deletions

View File

@@ -178,7 +178,7 @@ bool turn(int delta) {
if(g.achievement_name != "") rogueviz::rv_achievement(g.achievement_name);
if(g.leaderboard_name != "") {
auto res = curlev->current_score[gid];
rogueviz::rv_leaderboard(g.leaderboard_name + (planning_mode ? " (planning)" : ""), abs(res) * 1000, -1, rvlc::ms);
rogueviz::rv_leaderboard((planning_mode ? "Nil Rider planning: " : "Nil Rider manual: ") + g.leaderboard_name, abs(res) * 1000, -1, rvlc::ms);
}
}
gid++;