mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-19 14:38:18 +00:00
Remove verbose debug logging
This commit is contained in:
parent
ca56cba2a7
commit
23b8508352
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue