From 8ea92dedabb467abf07b3e24e1f324e71c03e47b Mon Sep 17 00:00:00 2001 From: Nicolas Bacca Date: Mon, 26 Jan 2004 07:32:25 +0000 Subject: Support for new CE backend launcher svn-id: r12601 --- base/main.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'base/main.cpp') diff --git a/base/main.cpp b/base/main.cpp index 289581bacc..36409fe41e 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -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 @@ static int launcherDialog(GameDetector &detector, OSystem *system) { system->set_palette(dummy_palette, 0, 16); +#ifndef _WIN32_WCE GUI::LauncherDialog dlg(detector); +#else + CELauncherDialog dlg(detector); +#endif return dlg.runModal(); } -- cgit v1.2.3