diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 4 | ||||
-rw-r--r-- | base/plugins.cpp | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/base/main.cpp b/base/main.cpp index 930b69cfac..5d0c0ea09a 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -103,7 +103,7 @@ static const EnginePlugin *detectPlugin() { // Query the plugins and find one that will handle the specified gameid printf("User picked target '%s' (gameid '%s')...\n", ConfMan.getActiveDomainName().c_str(), gameid.c_str()); - printf("%s", " Looking for a plugin supporting this gameid... "); + printf(" Looking for a plugin supporting this gameid... "); GameDescriptor game = EngineMan.findGame(gameid, &plugin); @@ -111,7 +111,7 @@ 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 Starting '%s'\n", plugin->getName(), game.description().c_str()); + 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..3e18e0ec4e 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -94,6 +94,9 @@ public: #if PLUGIN_ENABLED_STATIC(AGOS) LINK_PLUGIN(AGOS) #endif + #if PLUGIN_ENABLED_STATIC(CGE) + LINK_PLUGIN(CGE) + #endif #if PLUGIN_ENABLED_STATIC(CINE) LINK_PLUGIN(CINE) #endif |