1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-05-10 03:04:06 +00:00

increased fmax in hyperbolic space to make it work with larger tesselations

This commit is contained in:
Zeno Rogue 2018-11-30 14:41:47 +01:00
parent 9b4a53783c
commit b03f23cf65

View File

@ -88,7 +88,7 @@ void precalc() {
goto finish; goto finish;
} }
fmin = 0, fmax = 3; fmin = 0, fmax = hyperbolic ? 10 : 3;
for(int p=0; p<100; p++) { for(int p=0; p<100; p++) {
ld f = (fmin+fmax) / 2; ld f = (fmin+fmax) / 2;