1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 03:09:59 +00:00

full_geometry_name now displays the Archimedean symbol

This commit is contained in:
Zeno Rogue 2021-06-16 12:42:47 +02:00
parent 82b8b02a36
commit 0a6746f296

View File

@ -634,6 +634,7 @@ EX string full_geometry_name() {
string fgname = XLAT(ginf[geometry].tiling_name);
if(qstring != "none") fgname += " " + XLAT(qstring);
if(arcm::in()) fgname = arcm::current.symbol;
if(variable) fgname = gp::operation_name() + " " + fgname;
return fgname;
}