Remove verbose debug logging

This commit is contained in:
rexim 2019-03-06 02:50:23 +07:00
parent ca56cba2a7
commit 23b8508352

View file

@ -234,13 +234,11 @@ int CInput::Update()
// fall through
case SDL_JOYBUTTONDOWN:
dbg_msg("joystick", "Joystick button down: %d", Event.jbutton.button);
Key = Event.jbutton.button + KEY_JOYSTICK_BUTTON_0;
Scancode = Key;
break;
case SDL_JOYHATMOTION:
dbg_msg("joystick", "Joystick hat down: %d", Event.jhat.value);
switch (Event.jhat.value) {
case SDL_HAT_LEFTUP:
Key = KEY_JOY_HAT_LEFTUP;