mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2026-09-14 08:11:20 +00:00
Hypersian Rug forbidden when using 3D engine
This commit is contained in:
+2
-2
@@ -216,7 +216,7 @@ void showTorusConfig() {
|
||||
dialog::addSelItem(XLAT("scale factor"), fts(vid.scale), 'z');
|
||||
|
||||
#if CAP_RUG
|
||||
dialog::addBoolItem(XLAT("hypersian rug mode"), (rug::rugged), 'u');
|
||||
if(DIM == 2) dialog::addBoolItem(XLAT("hypersian rug mode"), (rug::rugged), 'u');
|
||||
#endif
|
||||
|
||||
dialog::addItem("activate", 'a');
|
||||
@@ -256,7 +256,7 @@ void showTorusConfig() {
|
||||
});
|
||||
else if(uni == 'z') editScale();
|
||||
#if CAP_RUG
|
||||
else if(uni == 'u') rug::select();
|
||||
else if(uni == 'u' && DIM == 2) rug::select();
|
||||
#endif
|
||||
else if(doexiton(sym, uni))
|
||||
popScreen();
|
||||
|
||||
Reference in New Issue
Block a user