From: Ingo Ruhnke Date: Wed, 14 May 2008 18:26:41 +0000 (+0000) Subject: Commented out the 'Key 300 is unbound' messages, don't serve much purpose, but flood... X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=02eb8d9e8e23eca32fddb2e6914eefe3ec222298;p=supertux.git Commented out the 'Key 300 is unbound' messages, don't serve much purpose, but flood the screen SVN-Revision: 5476 --- diff --git a/src/control/joystickkeyboardcontroller.cpp b/src/control/joystickkeyboardcontroller.cpp index 4b475a792..b97b9b74a 100644 --- a/src/control/joystickkeyboardcontroller.cpp +++ b/src/control/joystickkeyboardcontroller.cpp @@ -514,7 +514,7 @@ JoystickKeyboardController::process_key_event(const SDL_Event& event) process_menu_key_event(event); } else if(key_mapping == keymap.end()) { // default action: update controls - log_debug << "Key " << event.key.keysym.sym << " is unbound" << std::endl; + //log_debug << "Key " << event.key.keysym.sym << " is unbound" << std::endl; } else { Control control = key_mapping->second; controls[control] = (event.type == SDL_KEYDOWN);