From 3b38afd1dd14728c838ad75bdf5417c77e30e509 Mon Sep 17 00:00:00 2001 From: "baka0815.de" Date: Tue, 13 Nov 2018 10:32:00 +0100 Subject: [PATCH] SDL: Rename SDK to SDL in output --- core/sdl/sdl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/sdl/sdl.cpp b/core/sdl/sdl.cpp index 21803c1e3..c61fc1dad 100644 --- a/core/sdl/sdl.cpp +++ b/core/sdl/sdl.cpp @@ -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