diff options
author | Max Horn | 2006-04-02 00:18:33 +0000 |
---|---|---|
committer | Max Horn | 2006-04-02 00:18:33 +0000 |
commit | b2a5647887c003996bde99a4041e463d93e04a47 (patch) | |
tree | af7505bbe54c2f6bf8eb932cc2103a50ebf7d946 /base | |
parent | 587431f8e838bd08d081d65f18b1f9b8f04566b8 (diff) | |
download | scummvm-rg350-b2a5647887c003996bde99a4041e463d93e04a47.tar.gz scummvm-rg350-b2a5647887c003996bde99a4041e463d93e04a47.tar.bz2 scummvm-rg350-b2a5647887c003996bde99a4041e463d93e04a47.zip |
Removing undocumented Allegro/Qtopia port stuff -- if anybody is working on either port, feel free to re-add it, but this time, document it and make sure it's clear how to build that port
svn-id: r21543
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/base/main.cpp b/base/main.cpp index b3aff49641..4514da6041 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -56,6 +56,10 @@ #include "args.h" #endif +#ifdef __SYMBIAN32__ +#include "gui/Actions.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). @@ -150,19 +154,6 @@ const char* stackCookie = "$STACK: 655360\0"; #define STDERR_FILE TEXT("stderr.txt") #endif -#if defined(QTOPIA) -// FIXME - why exactly is this needed? -extern "C" int main(int argc, char *argv[]); -#endif - -#if defined (ALLEGRO_BACKEND) -#include "allegro.h" -#endif - -#ifdef __SYMBIAN32__ -#include "gui/Actions.h" -#endif - #if defined(UNIX) #include <signal.h> @@ -526,10 +517,6 @@ extern "C" int scummvm_main(int argc, char *argv[]) { return 0; } -// allegro needs this for some reason... -#if defined(ALLEGRO_BACKEND) -END_OF_MAIN(); -#endif static void debugHelper(char *buf, bool caret = true) { #ifndef _WIN32_WCE |