From 9af8549c9552fd94ac8e4c4f47f0263b8aa27512 Mon Sep 17 00:00:00 2001 From: Nicolas Bacca Date: Sun, 21 Sep 2003 09:06:13 +0000 Subject: Use banners on WinCE svn-id: r10345 --- base/main.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'base/main.cpp') diff --git a/base/main.cpp b/base/main.cpp index e92d9b3069..888203d3cb 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -152,6 +152,8 @@ static void do_memory_test(void) { #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 @@ int main(int argc, char *argv[]) { 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); } -- cgit v1.2.3