[Scummvm-cvs-logs] CVS: scummvm/base main.cpp,1.5,1.6

Nicolas Bacca arisme at users.sourceforge.net
Sun Sep 21 02:07:04 CEST 2003


Update of /cvsroot/scummvm/scummvm/base
In directory sc8-pr-cvs1:/tmp/cvs-serv21433

Modified Files:
	main.cpp 
Log Message:
Use banners on WinCE

Index: main.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/base/main.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- main.cpp	20 Sep 2003 20:58:31 -0000	1.5
+++ main.cpp	21 Sep 2003 09:06:13 -0000	1.6
@@ -152,6 +152,8 @@
 
 #endif
 
+#ifndef _WIN32_WCE
+
 static void launcherDialog(GameDetector &detector, OSystem *system) {
 	// FIXME - we need to call init_size() here so that we can display for example
 	// the launcher dialog. But the Engine object will also call it again (possibly
@@ -286,7 +288,9 @@
 	return 0;
 }
 
-#if !defined(__PALM_OS__) && !defined(MACOSX)
+#endif // WIN32_WCE
+
+#if !defined(__PALM_OS__) && !defined(MACOSX) && !defined(_WIN32_WCE)
 void *operator new(size_t size) {
 	return memset(malloc(size), 0xE7, size);
 }





More information about the Scummvm-git-logs mailing list