Added sceNpBasicGetFriendListEntryCount and sceNpBasicGetMessageEntryCount

Fixed (?) sometimes functions being unloaded when they shouldn't.
Also reverted the SPUThread hack.
This commit is contained in:
Raul Tambre 2014-09-20 19:09:18 +03:00
parent df84e89d46
commit 6360ef1790
5 changed files with 62 additions and 12 deletions

View file

@ -89,10 +89,11 @@ void Module::UnLoad()
if(m_unload_func) m_unload_func();
for(u32 i=0; i<m_funcs_list.size(); ++i)
{
Emu.GetModuleManager().UnloadFunc(m_funcs_list[i]->id);
}
// TODO: Re-enable this when needed
//for(u32 i=0; i<m_funcs_list.size(); ++i)
//{
// Emu.GetModuleManager().UnloadFunc(m_funcs_list[i]->id);
//}
SetLoaded(false);
}