From b0b843fc2288ce4cb319eb90e771e6ebfb968ca9 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 27 Aug 2019 15:45:15 +0200 Subject: [PATCH] rots:: fixed ordering of vertices on walls --- nonisotropic.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/nonisotropic.cpp b/nonisotropic.cpp index c365ec6c..3f467ab3 100644 --- a/nonisotropic.cpp +++ b/nonisotropic.cpp @@ -754,6 +754,7 @@ EX namespace hybrid { l.push_back(hybrid::get_corner(c1, i, 1, z)); l.push_back(hybrid::get_corner(c1, i, 0, z)); } + if(a == 0) std::reverse(l.begin()+1, l.end()); cgi.make_wall(won-2+a, l); }