From 96270d4bf23aa77bcda5ec98b808dcd26931e0b1 Mon Sep 17 00:00:00 2001 From: Jaromir Wysoglad Date: Wed, 14 Aug 2019 21:48:50 +0200 Subject: JANITORIAL: Remove debuging code. --- backends/platform/sdl/sdl.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'backends/platform') diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp index 0139bac29d..800df58ed3 100644 --- a/backends/platform/sdl/sdl.cpp +++ b/backends/platform/sdl/sdl.cpp @@ -770,7 +770,6 @@ int SDL_SetColorKey_replacement(SDL_Surface *surface, Uint32 flag, Uint32 key) { char *OSystem_SDL::convertEncoding(const char *to, const char *from, const char *string, size_t length) { #if SDL_VERSION_ATLEAST(2, 0, 0) - debug("Trying SDL..."); int zeroBytes = 1; if (Common::String(from).hasPrefixIgnoreCase("utf-16")) zeroBytes = 2; @@ -778,7 +777,6 @@ char *OSystem_SDL::convertEncoding(const char *to, const char *from, const char zeroBytes = 4; return SDL_iconv_string(to, from, string, length + zeroBytes); #else - debug("SDL isn't available"); return nullptr; #endif // SDL_VERSION_ATLEAST(2, 0, 0) } -- cgit v1.2.3