1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-28 12:27:40 +00:00

more adjustments to disabled CAP_*

This commit is contained in:
Zeno Rogue
2019-09-13 03:10:26 +02:00
parent 9a0507ba58
commit a3d9711ec2
8 changed files with 34 additions and 13 deletions

View File

@@ -363,8 +363,11 @@ EX void extendBarrier(cell *c) {
}
if(c->barleft == NOWALLSEP) {
#if MAXMDIM >= 4
if(WDIM == 3) extend3D(c);
else extendNowall(c);
else
#endif
extendNowall(c);
return;
}