mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-06 04:17:58 +00:00
renamed MAXDIM to MAXMDIM (conflict with crystal)
This commit is contained in:
@@ -227,11 +227,11 @@ heptagon *createStep(heptagon *h, int d) {
|
||||
if(!h->move(d) && binarytiling && DIM == 2)
|
||||
return binary::createStep(h, d);
|
||||
#endif
|
||||
#if CAP_BT && MAXDIM == 4
|
||||
#if CAP_BT && MAXMDIM == 4
|
||||
if(!h->move(d) && binarytiling && DIM == 3)
|
||||
return binary::createStep3(h, d);
|
||||
#endif
|
||||
#if MAXDIM == 4
|
||||
#if MAXMDIM == 4
|
||||
if(!h->move(d) && euclid && DIM == 3)
|
||||
return euclid3::createStep(h, d);
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user