1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-04-25 02:01:23 +00:00

rogueviz:: embeddings:: do not use C++20 extension

This commit is contained in:
Zeno Rogue
2025-12-11 10:11:42 +01:00
parent bafb2d383f
commit bd828f97ad

View File

@@ -87,7 +87,7 @@ namespace embeddings {
double r, theta;
if(!scan(f, r, theta)) { println(hlog, "Error: incorrect format of r/alpha\n"); exit(1); }
pe->coords[id] = polar_point{.r = r, .theta = theta * degree};
pe->coords[id] = polar_point{r, theta * degree};
}
enable_embedding(pe);