diff options
Diffstat (limited to 'src/joystick.cpp')
-rw-r--r-- | src/joystick.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/joystick.cpp b/src/joystick.cpp index cb3fa7fe1..86279c99d 100644 --- a/src/joystick.cpp +++ b/src/joystick.cpp @@ -180,7 +180,7 @@ void Joystick::logic() if (!mDirection && mHaveHats) { // reading only hat 0 - Uint8 hat = SDL_JoystickGetHat(mJoystick, 0); + uint8_t hat = SDL_JoystickGetHat(mJoystick, 0); if (hat & SDL_HAT_RIGHT) mDirection |= RIGHT; else if (hat & SDL_HAT_LEFT) |