diff options
Diffstat (limited to 'engines/metaengine.h')
-rw-r--r-- | engines/metaengine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/metaengine.h b/engines/metaengine.h index b3aaa96a8f..68f4b36848 100644 --- a/engines/metaengine.h +++ b/engines/metaengine.h @@ -79,7 +79,7 @@ public: * (possibly empty) list of games supported by the engine which it was able * to detect amongst the given files. */ - virtual GameList detectGames(const Common::FSList &fslist) const = 0; + virtual GameList detectGames(const Common::FSList &fslist, bool useUnknownGameDialog = false) const = 0; /** * Tries to instantiate an engine instance based on the settings of @@ -269,7 +269,7 @@ class EngineManager : public Common::Singleton<EngineManager> { public: GameDescriptor findGameInLoadedPlugins(const Common::String &gameName, const Plugin **plugin = NULL) const; GameDescriptor findGame(const Common::String &gameName, const Plugin **plugin = NULL) const; - GameList detectGames(const Common::FSList &fslist) const; + GameList detectGames(const Common::FSList &fslist, bool useUnknownGameDialog = false) const; const PluginList &getPlugins() const; }; |