WEBOS: Correct indentation of WEBOS preprocessor check
This commit is contained in:
parent
1bc38d2532
commit
91e43bb136
1 changed files with 3 additions and 3 deletions
|
@ -213,11 +213,11 @@ void OSystem_SDL::initSDL() {
|
||||||
uint32 sdlFlags = 0;
|
uint32 sdlFlags = 0;
|
||||||
if (ConfMan.hasKey("disable_sdl_parachute"))
|
if (ConfMan.hasKey("disable_sdl_parachute"))
|
||||||
sdlFlags |= SDL_INIT_NOPARACHUTE;
|
sdlFlags |= SDL_INIT_NOPARACHUTE;
|
||||||
|
|
||||||
#ifdef WEBOS
|
#ifdef WEBOS
|
||||||
// WebOS needs this flag or otherwise the application won't start
|
// WebOS needs this flag or otherwise the application won't start
|
||||||
sdlFlags |= SDL_INIT_VIDEO;
|
sdlFlags |= SDL_INIT_VIDEO;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Initialize SDL (SDL Subsystems are initiliazed in the corresponding sdl managers)
|
// Initialize SDL (SDL Subsystems are initiliazed in the corresponding sdl managers)
|
||||||
if (SDL_Init(sdlFlags) == -1)
|
if (SDL_Init(sdlFlags) == -1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue