mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-01 06:10:00 +01:00
Bugfix
This commit is contained in:
parent
6cbdeb9411
commit
316bd8d155
|
|
@ -172,20 +172,22 @@ static const g_module_list[] =
|
|||
|
||||
void ModuleManager::Init()
|
||||
{
|
||||
if (!initialized)
|
||||
if (initialized)
|
||||
{
|
||||
clear_ppu_functions();
|
||||
|
||||
for (auto& m : g_module_list)
|
||||
{
|
||||
if (m.module)
|
||||
{
|
||||
m.module->Init();
|
||||
}
|
||||
}
|
||||
|
||||
initialized = true;
|
||||
Close();
|
||||
}
|
||||
|
||||
clear_ppu_functions();
|
||||
|
||||
for (auto& m : g_module_list)
|
||||
{
|
||||
if (m.module)
|
||||
{
|
||||
m.module->Init();
|
||||
}
|
||||
}
|
||||
|
||||
initialized = true;
|
||||
}
|
||||
|
||||
ModuleManager::ModuleManager()
|
||||
|
|
|
|||
Loading…
Reference in a new issue