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

expansion_analyzer:: Theta used when Unicode Theta not available

This commit is contained in:
Zeno Rogue 2018-09-28 03:11:58 +02:00
parent edcd003b94
commit d36a31ce48

View File

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