diff options
author | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-08-30 08:09:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-30 08:09:41 +0200 |
commit | bd6b90359c654f4c75964755e476a8bfd90114ba (patch) | |
tree | 2c3322587dfd845efc1332feed6708b9f02a9f69 /src/guiKeyChangeMenu.cpp | |
parent | 43f9e948a128606ba4d446b79999ca8718b4456a (diff) | |
download | minetest-bd6b90359c654f4c75964755e476a8bfd90114ba.tar.xz |
Remove DSTACK support (#6346)
Debugstacks is not useful, we don't really use it, the DebugStack is not pertinent, gdb and lldb are better if we really want to debug.
Diffstat (limited to 'src/guiKeyChangeMenu.cpp')
-rw-r--r-- | src/guiKeyChangeMenu.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/guiKeyChangeMenu.cpp b/src/guiKeyChangeMenu.cpp index da8d20051..53677a57b 100644 --- a/src/guiKeyChangeMenu.cpp +++ b/src/guiKeyChangeMenu.cpp @@ -63,7 +63,6 @@ enum GUI_ID_KEY_MUTE_BUTTON, GUI_ID_KEY_DEC_VOLUME_BUTTON, GUI_ID_KEY_INC_VOLUME_BUTTON, - GUI_ID_KEY_DUMP_BUTTON, GUI_ID_KEY_RANGE_BUTTON, GUI_ID_KEY_ZOOM_BUTTON, GUI_ID_KEY_CAMERA_BUTTON, @@ -433,6 +432,5 @@ void GUIKeyChangeMenu::init_keys() this->add_key(GUI_ID_KEY_HUD_BUTTON, wgettext("Toggle HUD"), "keymap_toggle_hud"); this->add_key(GUI_ID_KEY_CHATLOG_BUTTON, wgettext("Toggle chat log"), "keymap_toggle_chat"); this->add_key(GUI_ID_KEY_FOG_BUTTON, wgettext("Toggle fog"), "keymap_toggle_force_fog_off"); - this->add_key(GUI_ID_KEY_DUMP_BUTTON, wgettext("Print stacks"), "keymap_print_debug_stacks"); } |