Fixed typo in gamepad debug output (see r2758 on 0.6rc1 branch).

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@2759 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2008-12-22 13:01:18 +00:00
parent b6e05d7067
commit 7b449f9188

View File

@@ -519,7 +519,7 @@ void SDLDriver::input()
case SDL_JOYAXISMOTION:
if(user_config->m_gamepad_debug)
{
printf("axis motion: which %d %axis d value %d\n",
printf("axis motion: which %d axis %d value %d\n",
ev.jaxis.which, ev.jaxis.axis, ev.jaxis.value);
}
stickIndex = stickInfos[ev.jaxis.which]->m_index;