aboutsummaryrefslogtreecommitdiff
path: root/backends/sdl/sdl.cpp
diff options
context:
space:
mode:
authorMax Horn2003-05-14 19:44:41 +0000
committerMax Horn2003-05-14 19:44:41 +0000
commitfae5ab677c1c3d3042c48f73a34f66ce3f2fdba4 (patch)
treecda7c0a6d6141ef998f2bee5fdbca5b583ef8bc9 /backends/sdl/sdl.cpp
parentd4841c91972027c230b3941699a138cf427f652e (diff)
downloadscummvm-rg350-fae5ab677c1c3d3042c48f73a34f66ce3f2fdba4.tar.gz
scummvm-rg350-fae5ab677c1c3d3042c48f73a34f66ce3f2fdba4.tar.bz2
scummvm-rg350-fae5ab677c1c3d3042c48f73a34f66ce3f2fdba4.zip
fixed bug where SDL_CreateMutex was being called before SDL_Init; restructured code a little
svn-id: r7510
Diffstat (limited to 'backends/sdl/sdl.cpp')
-rw-r--r--backends/sdl/sdl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/sdl/sdl.cpp b/backends/sdl/sdl.cpp
index 13cf5fe087..b2134be962 100644
--- a/backends/sdl/sdl.cpp
+++ b/backends/sdl/sdl.cpp
@@ -48,7 +48,7 @@ protected:
void hotswap_gfx_mode();
};
-OSystem_SDL_Common *OSystem_SDL_Common::create() {
+OSystem *OSystem_SDL_Common::create_intern() {
return new OSystem_SDL();
}