trying to fix warning in joystick.cpp

This commit is contained in:
SamGondelman 2016-06-06 16:48:21 -07:00
parent b59d597780
commit 8fa52fa159

View file

@ -25,7 +25,7 @@ Joystick::Joystick(SDL_JoystickID instanceId, SDL_GameController* sdlGameControl
_instanceId(instanceId)
{
if (!_sdlHaptic) {
qDebug(SDL_GetError());
qDebug() << SDL_GetError();
}
SDL_HapticRumbleInit(_sdlHaptic);
}