From 4a151f9c631789724563b50bc269a87a384df687 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 9 Mar 2019 18:30:24 +0100 Subject: [PATCH] 3d::mirror::fixup: do nothing in non-shmup --- complex.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/complex.cpp b/complex.cpp index 9e1ca866..acdba317 100644 --- a/complex.cpp +++ b/complex.cpp @@ -1197,8 +1197,8 @@ namespace mirror { cell *c = cw.at; #if MAXMDIM >= 4 - if(DIM == 3 && !binarytiling && shmup::on) { - for(int i=0; itype; i++) + if(DIM == 3 && !binarytiling) { + if(shmup::on) for(int i=0; itype; i++) createMirror(cw + i + wstep - i, cpid); return; } @@ -1228,8 +1228,8 @@ namespace mirror { } #endif #if MAXMDIM >= 4 - if(DIM == 3 && !binarytiling && shmup::on) { - for(int i=0; itype; i++) + if(DIM == 3 && !binarytiling) { + if(shmup::on) for(int i=0; itype; i++) createMirror(cw + i + wstep - i, cpid); return; }