SDL: Rename SDK to SDL in output

This commit is contained in:
baka0815.de 2018-11-13 10:32:00 +01:00
parent 453fccb835
commit 3b38afd1dd
1 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ void input_sdl_init()
ButtonCount = SDL_JoystickNumButtons(JoySDL);
Name = SDL_JoystickName(JoySDL);
printf("SDK: Found '%s' joystick with %d axes and %d buttons\n", Name, AxisCount, ButtonCount);
printf("SDL: Found '%s' joystick with %d axes and %d buttons\n", Name, AxisCount, ButtonCount);
if (Name != NULL && strcmp(Name,"Microsoft X-Box 360 pad")==0)
{
@ -105,7 +105,7 @@ void input_sdl_init()
}
else
{
printf("SDK: No Joystick Found\n");
printf("SDL: No Joystick Found\n");
}
#ifdef TARGET_PANDORA