1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-24 02:17:40 +00:00

asonov:: changed direct checking of gArnoldCat to asonov::in()

This commit is contained in:
Zeno Rogue
2019-11-08 15:34:51 +01:00
parent 9cb2a753de
commit add037d4e8
7 changed files with 11 additions and 13 deletions

View File

@@ -48,12 +48,8 @@ EX namespace nisot {
EX namespace solnihv {
EX eGeometry geom() {
switch(geometry) {
case gSol: case gArnoldCat:
return gSol;
default:
return geometry;
}
if(asonov::in()) return gSol;
else return geometry;
}
#if HDR