diff options
author | Hubert Maier | 2019-10-24 18:54:36 +0200 |
---|---|---|
committer | Filippos Karapetis | 2019-10-24 20:33:48 +0300 |
commit | ee2aa6160cdd393f15253ee564252f486d4f03bd (patch) | |
tree | 80538cb0e86e103934d3cbcf544056d4a74a05e9 /backends/platform | |
parent | 4e74be4f76db30dd9a25c3a30fa933017108800c (diff) | |
download | scummvm-rg350-ee2aa6160cdd393f15253ee564252f486d4f03bd.tar.gz scummvm-rg350-ee2aa6160cdd393f15253ee564252f486d4f03bd.tar.bz2 scummvm-rg350-ee2aa6160cdd393f15253ee564252f486d4f03bd.zip |
SDL: Fix typo in comment
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/sdl/sdl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp index 2badbb858f..b3436dbef8 100644 --- a/backends/platform/sdl/sdl.cpp +++ b/backends/platform/sdl/sdl.cpp @@ -329,7 +329,7 @@ void OSystem_SDL::initSDL() { if (ConfMan.hasKey("disable_sdl_parachute")) sdlFlags |= SDL_INIT_NOPARACHUTE; - // Initialize SDL (SDL Subsystems are initiliazed in the corresponding sdl managers) + // Initialize SDL (SDL Subsystems are initialized in the corresponding sdl managers) if (SDL_Init(sdlFlags) == -1) error("Could not initialize SDL: %s", SDL_GetError()); |