1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-23 07:27:07 +00:00

no linewidth while flat_on

This commit is contained in:
Zeno Rogue 2020-08-01 16:42:02 +02:00
parent fc283bd527
commit 0c5877a7ba

View File

@ -724,7 +724,7 @@ EX int perfect_linewidth = 1;
EX ld linewidthat(const shiftpoint& h) { EX ld linewidthat(const shiftpoint& h) {
if(!(vid.antialias & AA_LINEWIDTH)) return 1; if(!(vid.antialias & AA_LINEWIDTH)) return 1;
else if(hyperbolic && pmodel == mdDisk && pconf.alpha == 1 && !ISWEB) { else if(hyperbolic && pmodel == mdDisk && pconf.alpha == 1 && !ISWEB && !flat_on) {
double dz = h[LDIM]; double dz = h[LDIM];
if(dz < 1) return 1; if(dz < 1) return 1;
else { else {