diff options
| -rw-r--r-- | base/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
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(); } |
