aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorKlaus Reimer2011-04-09 22:14:58 +0200
committerMax Horn2011-04-12 11:11:18 +0200
commit91e43bb136b00ab890118cfe6fb362d002ab0eba (patch)
tree6b0fdd3456fcc76b2542d02af2118fabb20d4315 /backends
parent1bc38d25323d3ca7b3e07f8d2d4b8ea48b7e0618 (diff)
downloadscummvm-rg350-91e43bb136b00ab890118cfe6fb362d002ab0eba.tar.gz
scummvm-rg350-91e43bb136b00ab890118cfe6fb362d002ab0eba.tar.bz2
scummvm-rg350-91e43bb136b00ab890118cfe6fb362d002ab0eba.zip
WEBOS: Correct indentation of WEBOS preprocessor check
Diffstat (limited to 'backends')
-rw-r--r--backends/platform/sdl/sdl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp
index d0036b47ff..d6e79248f9 100644
--- a/backends/platform/sdl/sdl.cpp
+++ b/backends/platform/sdl/sdl.cpp
@@ -213,11 +213,11 @@ void OSystem_SDL::initSDL() {
uint32 sdlFlags = 0;
if (ConfMan.hasKey("disable_sdl_parachute"))
sdlFlags |= SDL_INIT_NOPARACHUTE;
-
- #ifdef WEBOS
+
+#ifdef WEBOS
// WebOS needs this flag or otherwise the application won't start
sdlFlags |= SDL_INIT_VIDEO;
- #endif
+#endif
// Initialize SDL (SDL Subsystems are initiliazed in the corresponding sdl managers)
if (SDL_Init(sdlFlags) == -1)