[Scummvm-cvs-logs] SF.net SVN: scummvm: [22071] scummvm/trunk/backends/sdl/sdl.cpp
anotherguest at users.sourceforge.net
anotherguest at users.sourceforge.net
Fri Apr 21 13:50:03 CEST 2006
Revision: 22071
Author: anotherguest
Date: 2006-04-21 13:49:06 -0700 (Fri, 21 Apr 2006)
ViewCVS: http://svn.sourceforge.net/scummvm/?rev=22071&view=rev
Log Message:
-----------
Add creation of Symbian SDL backend instead of plain SDL
Modified Paths:
--------------
scummvm/trunk/backends/sdl/sdl.cpp
Modified: scummvm/trunk/backends/sdl/sdl.cpp
===================================================================
--- scummvm/trunk/backends/sdl/sdl.cpp 2006-04-21 10:47:43 UTC (rev 22070)
+++ scummvm/trunk/backends/sdl/sdl.cpp 2006-04-21 20:49:06 UTC (rev 22071)
@@ -28,6 +28,9 @@
#include "icons/scummvm.xpm"
+#if defined(__SYMBIAN32__)
+#include "SymbianOs.h"
+#endif
#if !defined(_WIN32_WCE) && !defined(__MAEMO__)
@@ -85,7 +88,11 @@
#endif // defined(__SYMBIAN32__)
// Create our OSystem instance
+#if defined(__SYMBIAN32__)
+ g_system = new OSystem_SDL_Symbian();
+#else
g_system = new OSystem_SDL();
+#endif
assert(g_system);
// Invoke the actual ScummVM main entry point:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list