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
This commit is contained in:
parent
b7c63fce28
commit
34b5eb3ba3
9 changed files with 47 additions and 145 deletions
|
@ -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++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue