1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-04 03:27:55 +00:00

fix to a bug

This commit is contained in:
Zeno Rogue
2025-08-31 15:29:01 +02:00
parent fea2236fb1
commit 8e0c363c89

View File

@@ -1287,7 +1287,7 @@ int score_bgeom, score_max_piece;
void geometry_menu(bool for_scores) {
auto& c_geom = for_scores ? score_bgeom : bgeom;
auto& c_max = for_scores ? score_max_piece : bgeom;
auto& c_max = for_scores ? score_max_piece : cur.max_piece;
clearMessages();
cmode = sm::VR_MENU | sm::NOSCR; gamescreen();
dialog::init(for_scores ? "highscores for..." : "Bringris geometries");