diff options
author | Tony Puccinelli | 2010-08-16 08:41:04 +0000 |
---|---|---|
committer | Tony Puccinelli | 2010-08-16 08:41:04 +0000 |
commit | 34b5eb3ba3fa68093f13f9be493c1e25ad9c5123 (patch) | |
tree | e941302d57415917f028023cf1fbef2427a3ba16 /base | |
parent | b7c63fce28216b4a87aae6a042dcb3c64b97720e (diff) | |
download | scummvm-rg350-34b5eb3ba3fa68093f13f9be493c1e25ad9c5123.tar.gz scummvm-rg350-34b5eb3ba3fa68093f13f9be493c1e25ad9c5123.tar.bz2 scummvm-rg350-34b5eb3ba3fa68093f13f9be493c1e25ad9c5123.zip |
added a todo to plugins.cpp and a comment to elf32.h; Collapsed plugin providers for a few ports into their .h files, removing the corresponding .cpp files
svn-id: r52112
Diffstat (limited to 'base')
-rw-r--r-- | base/plugins.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/plugins.cpp b/base/plugins.cpp index a7e0036bac..fc5f1f4046 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -329,7 +329,7 @@ void PluginManager::loadFirstPlugin() { //TODO: rename? It's not quite clear tha //this loop is for loading all non-engine plugins and the first engine plugin. while (true) { assert(tryLoadPlugin(*_currentPlugin)); - if ((*_currentPlugin)->getType() == PLUGIN_TYPE_ENGINE) { + if ((*_currentPlugin)->getType() == PLUGIN_TYPE_ENGINE) { //TODO: This assumes all non-engine plugins will precede the first engine plugin! break; } _nonEnginePlugs++; |