Remove errant tab from joystick message

This commit is contained in:
Ilari Liusvaara 2011-09-23 22:46:33 +03:00
parent 2d06ca649c
commit b1295a3f11

View file

@ -362,7 +362,7 @@ namespace
}
window::out() << "Joystick #" << i << ": " << SDL_JoystickName(i) << "("
<< SDL_JoystickNumAxes(j) << " axes, " << SDL_JoystickNumButtons(j)
<< " buttons, " << SDL_JoystickNumHats(j) << " hats)." << std::endl;
<< " buttons, " << SDL_JoystickNumHats(j) << " hats)." << std::endl;
for(int k = 0; k < SDL_JoystickNumAxes(j); k++) {
unsigned num = 256 * i + k;
std::ostringstream x;