diff options
author | Gregory Montoir | 2006-11-03 21:23:07 +0000 |
---|---|---|
committer | Gregory Montoir | 2006-11-03 21:23:07 +0000 |
commit | 13d9cdbd26b1c07edf47b9e4731b9d652a294ba5 (patch) | |
tree | 4ecb39b0e40f592b36fbd5ef427e2ad4ea29ebd1 /base | |
parent | c71e6599bc160329319c0c05ca453184a45fb0f7 (diff) | |
download | scummvm-rg350-13d9cdbd26b1c07edf47b9e4731b9d652a294ba5.tar.gz scummvm-rg350-13d9cdbd26b1c07edf47b9e4731b9d652a294ba5.tar.bz2 scummvm-rg350-13d9cdbd26b1c07edf47b9e4731b9d652a294ba5.zip |
added 'touche' engine for the game 'Touche: The Adventures of the 5th Musketeer'
svn-id: r24592
Diffstat (limited to 'base')
-rw-r--r-- | base/plugins.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/base/plugins.cpp b/base/plugins.cpp index 8738fbe26f..bcca62ce1c 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -150,6 +150,9 @@ public: #ifndef DISABLE_AGI LINK_PLUGIN(AGI) #endif + #ifndef DISABLE_TOUCHE + LINK_PLUGIN(TOUCHE) + #endif return pl; } @@ -181,7 +184,7 @@ PluginManager::~PluginManager() { delete *pp; } } - + void PluginManager::addPluginProvider(PluginProvider *pp) { _providers.push_back(pp); } |