aboutsummaryrefslogtreecommitdiff
path: root/base/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'base/main.cpp')
-rw-r--r--base/main.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/base/main.cpp b/base/main.cpp
index 156998ab50..04a621aaf3 100644
--- a/base/main.cpp
+++ b/base/main.cpp
@@ -55,32 +55,6 @@
#endif
-namespace Base {
-
-// TODO: Find a better place for this function.
-GameDescriptor findGame(const Common::String &gameName, const Plugin **plugin) {
- // Find the GameDescriptor for this target
- const PluginList &plugins = PluginManager::instance().getPlugins();
- GameDescriptor result;
-
- if (plugin)
- *plugin = 0;
-
- PluginList::const_iterator iter = plugins.begin();
- for (iter = plugins.begin(); iter != plugins.end(); ++iter) {
- result = (*iter)->findGame(gameName.c_str());
- if (!result.gameid().empty()) {
- if (plugin)
- *plugin = *iter;
- break;
- }
- }
- return result;
-}
-
-} // End of namespace Base
-
-
static bool launcherDialog(OSystem &system) {
system.beginGFXTransaction();