Dedent a huge block of code.

This commit is contained in:
David Anderson 2015-09-16 21:51:54 -07:00
parent 370710c0ff
commit 2b3da56fb5

View File

@ -1142,11 +1142,11 @@ bool CPluginManager::LoadOrRequireExtensions(CPlugin *pPlugin, unsigned int pass
for (uint32_t i=0; i<num; i++)
{
if (pBase->GetPubvarByIndex(i, &pubvar) != SP_ERROR_NONE)
{
continue;
}
if (strncmp(pubvar->name, "__ext_", 6) == 0)
{
if (strncmp(pubvar->name, "__ext_", 6) != 0)
continue;
ext = (_ext *)pubvar->offs;
if (pBase->LocalToString(ext->file, &file) != SP_ERROR_NONE)
{
@ -1210,7 +1210,6 @@ bool CPluginManager::LoadOrRequireExtensions(CPlugin *pPlugin, unsigned int pass
}
}
}
}
return true;
}