1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-10-31 19:36:16 +00:00

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

View File

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