From 7b449f9188359296eb0c4ac091ebeb53be993aa4 Mon Sep 17 00:00:00 2001 From: hikerstk Date: Mon, 22 Dec 2008 13:01:18 +0000 Subject: [PATCH] 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 --- src/sdldrv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdldrv.cpp b/src/sdldrv.cpp index 01d2052a7..655f5a125 100755 --- a/src/sdldrv.cpp +++ b/src/sdldrv.cpp @@ -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;