1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-21 17:07:40 +00:00

some extra chars supported in the browser version

This commit is contained in:
Zeno Rogue
2018-10-01 00:02:16 +02:00
parent 3974053b81
commit 04c41d38ed
3 changed files with 10 additions and 6 deletions

View File

@@ -696,7 +696,7 @@ void expansion_analyzer::view_distances_dialog() {
char buf[20];
snprintf(buf, 20, "%.8lf", (double) get_growth());
dialog::addInfo((ISWEB ? "a(d) = Theta(" : "a(d) = Θ(") + string(buf) + "...ᵈ)", forecolor);
dialog::addInfo("Θ(" + string(buf) + "...ᵈ)", forecolor);
}
}