mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-18 23:10:26 +00:00
fixed a bug with dice drawing
This commit is contained in:
parent
805f33d8fa
commit
0e7adf28a8
@ -1309,7 +1309,11 @@ EX namespace dice {
|
||||
|
||||
array<hyperpoint, 5> face;
|
||||
|
||||
hyperpoint dctr = zpush(base_to_base) * C0;
|
||||
hyperpoint dctr;
|
||||
if(1) {
|
||||
dynamicval<eGeometry> g(geometry, highdim);
|
||||
dctr = zpush(base_to_base) * C0;
|
||||
}
|
||||
|
||||
auto sphere_to_space = [&] (hyperpoint h) {
|
||||
if(fpp) return h;
|
||||
|
Loading…
Reference in New Issue
Block a user