aboutsummaryrefslogtreecommitdiff
path: root/backends/platform
diff options
context:
space:
mode:
authorHubert Maier2019-10-24 18:54:36 +0200
committerFilippos Karapetis2019-10-24 20:33:48 +0300
commitee2aa6160cdd393f15253ee564252f486d4f03bd (patch)
tree80538cb0e86e103934d3cbcf544056d4a74a05e9 /backends/platform
parent4e74be4f76db30dd9a25c3a30fa933017108800c (diff)
downloadscummvm-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.cpp2
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());