From 60d7d1da7e929fb7566904ad23b1791da08b818f Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 15 May 2023 02:25:23 +0200 Subject: [PATCH] sky:: fixed stars --- sky.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sky.cpp b/sky.cpp index 09c88366..7f55b740 100644 --- a/sky.cpp +++ b/sky.cpp @@ -366,7 +366,7 @@ EX void draw_star(const shiftmatrix& V, const hpcshape& sh, color_t col, ld rev val += cgi.emb->center_z(); auto V1 = V; be_euclidean_infinity(V1.T); - queuepolyat(V1 * zpush(val), sh, col, PPR::SKY); + queuepolyat(V1 * lzpush(val), sh, col, PPR::SKY); } EX ld star_prob = 0.33;