mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2026-09-22 19:18:41 +00:00
fixed hotkey clash in take shot -> hide the player
This commit is contained in:
+1
-1
@@ -426,7 +426,7 @@ void menu() {
|
|||||||
dialog::addBoolItem(XLAT("disable the HUD"), hide_hud, 'h');
|
dialog::addBoolItem(XLAT("disable the HUD"), hide_hud, 'h');
|
||||||
dialog::add_action([] { hide_hud = !hide_hud; });
|
dialog::add_action([] { hide_hud = !hide_hud; });
|
||||||
|
|
||||||
dialog::addBoolItem(XLAT("hide the player"), !mapeditor::drawplayer, 'p');
|
dialog::addBoolItem(XLAT("hide the player"), !mapeditor::drawplayer, 'H');
|
||||||
dialog::add_action([] { mapeditor::drawplayer = !mapeditor::drawplayer; });
|
dialog::add_action([] { mapeditor::drawplayer = !mapeditor::drawplayer; });
|
||||||
|
|
||||||
dialog::addItem(XLAT("customize colors and aura"), 'c');
|
dialog::addItem(XLAT("customize colors and aura"), 'c');
|
||||||
|
|||||||
Reference in New Issue
Block a user