diff options
-rw-r--r-- | backends/platform/sdl/sdl.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp index e4a4f62014..9eeb170981 100644 --- a/backends/platform/sdl/sdl.cpp +++ b/backends/platform/sdl/sdl.cpp @@ -137,9 +137,8 @@ void OSystem_SDL::initBackend() { _graphicsMutex = createMutex(); -#if !defined(SAMSUNGTV) SDL_ShowCursor(SDL_DISABLE); -#endif + // Enable unicode support if possible SDL_EnableUNICODE(1); @@ -504,9 +503,9 @@ void OSystem_SDL::quit() { if (_joystick) SDL_JoystickClose(_joystick); -#if !defined(SAMSUNGTV) + SDL_ShowCursor(SDL_ENABLE); -#endif + SDL_RemoveTimer(_timerID); closeMixer(); |