diff options
-rw-r--r-- | opentrack-logic/win32-joystick.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/opentrack-logic/win32-joystick.cpp b/opentrack-logic/win32-joystick.cpp index b16a7021..41427629 100644 --- a/opentrack-logic/win32-joystick.cpp +++ b/opentrack-logic/win32-joystick.cpp @@ -216,7 +216,6 @@ bool win32_joy_ctx::joy::poll(fn f) if (state[j] != pressed[idx]) { f(guid, int(idx), state[j]); - qDebug() << "hat" << guid << i << "btn" << j << state[j]; pressed[idx] = state[j]; } } @@ -228,7 +227,6 @@ bool win32_joy_ctx::joy::poll(fn f) if (state != pressed[i]) { f(guid, i, state); - qDebug() << "btn" << guid << i << state; } pressed[i] = state; } |