KEYMAPPER: Comment out noisy warning

This commit is contained in:
Eugene Sandulenko 2020-03-10 17:05:53 +01:00
parent f3b5bc7ccf
commit ef80498843

View File

@ -174,7 +174,7 @@ List<Event> Keymapper::mapEvent(const Event &ev) {
continue; // Ignore GUI keymaps while in game and vice versa
}
debug(9, "Keymapper::mapKey keymap: %s", _keymaps[i]->getId().c_str());
//debug(9, "Keymapper::mapKey keymap: %s", _keymaps[i]->getId().c_str());
const Keymap::ActionArray &actions = _keymaps[i]->getMappedActions(ev);
for (Keymap::ActionArray::const_iterator it = actions.begin(); it != actions.end(); it++) {