3d:🪞:fixup: do nothing in non-shmup

This commit is contained in:
Zeno Rogue 2019-03-09 18:30:24 +01:00
parent d121e7ff93
commit 4a151f9c63
1 changed files with 4 additions and 4 deletions

View File

@ -1197,8 +1197,8 @@ namespace mirror {
cell *c = cw.at;
#if MAXMDIM >= 4
if(DIM == 3 && !binarytiling && shmup::on) {
for(int i=0; i<cw.at->type; i++)
if(DIM == 3 && !binarytiling) {
if(shmup::on) for(int i=0; i<cw.at->type; 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; i<cw.at->type; i++)
if(DIM == 3 && !binarytiling) {
if(shmup::on) for(int i=0; i<cw.at->type; i++)
createMirror(cw + i + wstep - i, cpid);
return;
}