mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
fixed hotkey clash
This commit is contained in:
parent
a0ac77b07b
commit
649ba86a8e
@ -1506,7 +1506,7 @@ namespace patterns {
|
||||
dialog::addBoolItem(XLAT("display full floors"), (whichShape == '9'), '9');
|
||||
dialog::addBoolItem(XLATN(winf[waInvisibleFloor].name), canvas_invisible, 'i');
|
||||
|
||||
if(cheater || autocheat) dialog::addItem(XLAT("line patterns"), 'l');
|
||||
if(cheater || autocheat) dialog::addItem(XLAT("line patterns"), 'L');
|
||||
else dialog::addInfo("enable the cheat mode to use line patterns");
|
||||
|
||||
dialog::addBack();
|
||||
@ -1550,7 +1550,7 @@ namespace patterns {
|
||||
if(whichShape == uni) whichShape = 0;
|
||||
else whichShape = uni;
|
||||
}
|
||||
else if(uni == 'l' && (cheater || autocheat))
|
||||
else if(uni == 'L' && (cheater || autocheat))
|
||||
pushScreen(linepatterns::showMenu);
|
||||
|
||||
else if(uni == 'f') {
|
||||
|
Loading…
Reference in New Issue
Block a user