From e2ef8932fa871563cb92be1bab7ce1cbac22ecba Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 15 May 2019 09:37:49 +0200 Subject: [PATCH] 3D:: disabled backwall optimization in sphere --- graph.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/graph.cpp b/graph.cpp index 7c0ae010..63a20939 100644 --- a/graph.cpp +++ b/graph.cpp @@ -4306,6 +4306,7 @@ int noclipped; void make_clipping_planes() { clipping_planes.clear(); + if(sphere) return; auto add_clipping_plane = [] (ld x1, ld y1, ld x2, ld y2) { using namespace hyperpoint_vec; ld z1 = 1, z2 = 1;