aboutsummaryrefslogtreecommitdiff
path: root/base/plugins.cpp
diff options
context:
space:
mode:
authorGregory Montoir2006-11-03 21:23:07 +0000
committerGregory Montoir2006-11-03 21:23:07 +0000
commit13d9cdbd26b1c07edf47b9e4731b9d652a294ba5 (patch)
tree4ecb39b0e40f592b36fbd5ef427e2ad4ea29ebd1 /base/plugins.cpp
parentc71e6599bc160329319c0c05ca453184a45fb0f7 (diff)
downloadscummvm-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/plugins.cpp')
-rw-r--r--base/plugins.cpp5
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);
}