diff options
author | Johannes Schickel | 2013-10-22 12:24:20 +0200 |
---|---|---|
committer | Kamil Zbróg | 2013-10-24 12:59:16 +0100 |
commit | a6f0d090cfe372484af05a528bead36021cc6e4d (patch) | |
tree | fb74853a689f72509b2234b9d38f1faf1c14d7c6 /backends/platform/wince | |
parent | ce92499e470f18ae8132ead53cda24f9516fe8e4 (diff) | |
download | scummvm-rg350-a6f0d090cfe372484af05a528bead36021cc6e4d.tar.gz scummvm-rg350-a6f0d090cfe372484af05a528bead36021cc6e4d.tar.bz2 scummvm-rg350-a6f0d090cfe372484af05a528bead36021cc6e4d.zip |
SDL: Reduce code duplication a bit.
Now instead of initializing this in OSystem_SDL::initSDL (and in subclasses
overwriting this) we simply initialize it in OSystem_SDL::init.
Diffstat (limited to 'backends/platform/wince')
-rw-r--r-- | backends/platform/wince/wince-sdl.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/backends/platform/wince/wince-sdl.cpp b/backends/platform/wince/wince-sdl.cpp index ea2bc42301..1c5cd5565b 100644 --- a/backends/platform/wince/wince-sdl.cpp +++ b/backends/platform/wince/wince-sdl.cpp @@ -576,12 +576,6 @@ void OSystem_WINCE3::initSDL() { if (SDL_Init(sdlFlags) == -1) error("Could not initialize SDL: %s", SDL_GetError()); - // Enable unicode support if possible - SDL_EnableUNICODE(1); - - // Disable OS cursor - SDL_ShowCursor(SDL_DISABLE); - _initedSDL = true; } } |