aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorTony Puccinelli2010-08-12 06:16:53 +0000
committerTony Puccinelli2010-08-12 06:16:53 +0000
commitcb3acc96efe450de692f7762b30478f441d40732 (patch)
treebf545a5c450625620a0a1f8e08c7624b4121bc02 /base
parent89d76fe5a5f72c18cec97aec419d2f2986ed3953 (diff)
downloadscummvm-rg350-cb3acc96efe450de692f7762b30478f441d40732.tar.gz
scummvm-rg350-cb3acc96efe450de692f7762b30478f441d40732.tar.bz2
scummvm-rg350-cb3acc96efe450de692f7762b30478f441d40732.zip
got rid of leftover debugging printf
svn-id: r52027
Diffstat (limited to 'base')
-rw-r--r--base/plugins.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/base/plugins.cpp b/base/plugins.cpp
index 1b760fb0b1..dbf29f63b7 100644
--- a/base/plugins.cpp
+++ b/base/plugins.cpp
@@ -395,7 +395,6 @@ bool PluginManager::tryLoadPlugin(Plugin *plugin) {
// The plugin is valid, see if it provides the same module as an
// already loaded one and should replace it.
bool found = false;
- printf("Plugin loaded is %s\n", plugin->getName());
PluginList::iterator pl = _plugins[plugin->getType()].begin();
while (!found && pl != _plugins[plugin->getType()].end()) {
if (!strcmp(plugin->getName(), (*pl)->getName())) {