diff options
author | Chris Warren-Smith | 2011-08-07 21:33:32 +1000 |
---|---|---|
committer | Chris Warren-Smith | 2011-08-21 16:37:06 +1000 |
commit | 59739a7a0e3e4826ba7b27d5270a8d7a26b787ef (patch) | |
tree | dcf98438157963eabd0ca4499b7794548b08f5fa /base | |
parent | f705a9b2865a3379b3423c7cc929086eee17a4f1 (diff) | |
download | scummvm-rg350-59739a7a0e3e4826ba7b27d5270a8d7a26b787ef.tar.gz scummvm-rg350-59739a7a0e3e4826ba7b27d5270a8d7a26b787ef.tar.bz2 scummvm-rg350-59739a7a0e3e4826ba7b27d5270a8d7a26b787ef.zip |
BADA: Initial BADA port implementation
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 6 | ||||
-rw-r--r-- | base/plugins.cpp | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/base/main.cpp b/base/main.cpp index a0792a9ad2..5c978fdc0a 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -111,10 +111,8 @@ static const EnginePlugin *detectPlugin() { printf("failed\n"); warning("%s is an invalid gameid. Use the --list-games option to list supported gameid", gameid.c_str()); } else { - printf("%s\n", plugin->getName()); - - // FIXME: Do we really need this one? - printf(" Starting '%s'\n", game.description().c_str()); + // FIXME: Do we really need this one? (BADA: for some unknown reason the format string "%s\n" causes a core-dump) + printf("%s\n Starting '%s'\n", plugin->getName(), game.description().c_str()); } return plugin; diff --git a/base/plugins.cpp b/base/plugins.cpp index 4fa1a961da..5de18f9678 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -190,7 +190,7 @@ public: // static/dynamic plugin, like it's done for the engines LINK_PLUGIN(AUTO) LINK_PLUGIN(NULL) - #if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__SYMBIAN32__) + #if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__SYMBIAN32__) && !defined(BADA) LINK_PLUGIN(WINDOWS) #endif #if defined(USE_ALSA) |