diff options
| author | Gregory Montoir | 2007-10-29 23:35:50 +0000 |
|---|---|---|
| committer | Gregory Montoir | 2007-10-29 23:35:50 +0000 |
| commit | 6c6e8657b68ebc075871031ee8c662f349c4ab77 (patch) | |
| tree | 1e2c691ffe1d142a3e781670ac63a981ebf70114 /base | |
| parent | caa451f5d2b471fc207739815638056f86fc8dce (diff) | |
| download | scummvm-rg350-6c6e8657b68ebc075871031ee8c662f349c4ab77.tar.gz scummvm-rg350-6c6e8657b68ebc075871031ee8c662f349c4ab77.tar.bz2 scummvm-rg350-6c6e8657b68ebc075871031ee8c662f349c4ab77.zip | |
added 'igor' engine for the game 'Igor: Objective Uikokahonia'
svn-id: r29318
Diffstat (limited to 'base')
| -rw-r--r-- | base/plugins.cpp | 3 | ||||
| -rw-r--r-- | base/plugins.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/base/plugins.cpp b/base/plugins.cpp index 0de8baccc6..7ccd99ce34 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -107,6 +107,9 @@ public: #ifndef DISABLE_GOB LINK_PLUGIN(GOB) #endif + #ifndef DISABLE_IGOR + LINK_PLUGIN(IGOR) + #endif #ifndef DISABLE_KYRA LINK_PLUGIN(KYRA) #endif diff --git a/base/plugins.h b/base/plugins.h index c89b590a73..23a28b745c 100644 --- a/base/plugins.h +++ b/base/plugins.h @@ -89,7 +89,7 @@ public: * Note: This MUST succeed for every gameID on the list returned by * gameIDList(), but MAY also work for additional gameids (e.g. to support * obsolete targets). - * - DetectedGameList Engine_##ID##_detectGames(const FSList &fslist) + * - GameList Engine_##ID##_detectGames(const FSList &fslist) * -> scans through the given file list (usually the contents of a directory), * and attempts to detects games present in that location. * - PluginError Engine_##ID##_create(OSystem *syst, Engine **engine) |
