[Scummvm-cvs-logs] CVS: scummvm/base main.cpp,1.31,1.32

Nicolas Bacca arisme at users.sourceforge.net
Mon Jan 26 13:17:23 CET 2004


Update of /cvsroot/scummvm/scummvm/base
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6085

Modified Files:
	main.cpp 
Log Message:
Support for new CE backend launcher

Index: main.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/base/main.cpp,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- main.cpp	17 Jan 2004 23:43:23 -0000	1.31
+++ main.cpp	26 Jan 2004 07:32:25 -0000	1.32
@@ -39,6 +39,10 @@
 #include "gui/launcher.h"
 #include "gui/message.h"
 
+#ifdef _WIN32_WCE
+#include "backends/wince/CELauncherDialog.h" 
+#endif
+
 /*
  * Version string and build date string. These can be used by anything that
  * wants to display this information to the user (e.g. about dialog).
@@ -181,7 +185,11 @@
 
 	system->set_palette(dummy_palette, 0, 16);
 
+#ifndef _WIN32_WCE
 	GUI::LauncherDialog dlg(detector);
+#else
+	CELauncherDialog dlg(detector);
+#endif
 	return dlg.runModal();
 }
 





More information about the Scummvm-git-logs mailing list