aboutsummaryrefslogtreecommitdiff
path: root/backends/sdl/sdl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/sdl/sdl.cpp')
-rw-r--r--backends/sdl/sdl.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/backends/sdl/sdl.cpp b/backends/sdl/sdl.cpp
index 74dbb969e9..b1da08c60e 100644
--- a/backends/sdl/sdl.cpp
+++ b/backends/sdl/sdl.cpp
@@ -24,6 +24,7 @@
#include "backends/sdl/sdl-common.h"
#include "common/config-manager.h"
#include "common/util.h"
+#include "base/main.h"
#if defined(HAVE_CONFIG_H)
#include "config.h"
@@ -32,6 +33,12 @@
#include "scummvm.xpm"
+#if !defined(_WIN32_WCE) && !defined(__SYMBIAN32__) && !defined(__MAEMO__)
+int main(int argc, char *argv[]) {
+ return scummvm_main(argc, argv);
+}
+#endif
+
OSystem *OSystem_SDL_create() {
return new OSystem_SDL();
}