From 4eae450730efced8c21afb62586fd234406b4fd7 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 11 May 2025 13:29:30 +0200 Subject: [PATCH] fixed multiple itBarrow distance scaling --- graph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph.cpp b/graph.cpp index aee2b06a..d7276df4 100644 --- a/graph.cpp +++ b/graph.cpp @@ -1083,7 +1083,7 @@ EX bool drawItemType(eItem it, cell *c, const shiftmatrix& V, color_t icol, int else if(it == itBarrow && c) { for(int i = 0; ilandparam; i++) - queuepolyat(Vit * spin(TAU * i / c->landparam) * xpush(.15) * spinptick(1500, 0), *xsh, darkena(icol, 0, hidden ? 0x40 : + queuepolyat(Vit * spin(TAU * i / c->landparam) * xpush(.15 * cgi.scalefactor) * spinptick(1500, 0), *xsh, darkena(icol, 0, hidden ? 0x40 : (highwall(c) && wmspatial) ? 0x60 : 0xFF), PPR::HIDDEN); }