Fail to start if sync core plugins fail to initialize
This commit is contained in:
parent
236f2a1ddb
commit
c291ab8457
|
@ -814,10 +814,14 @@ void CN64System::ExecuteSyncCPU ()
|
||||||
m_Recomp = new CRecompiler(m_Profile,m_EndEmulation);
|
m_Recomp = new CRecompiler(m_Profile,m_EndEmulation);
|
||||||
|
|
||||||
SetActiveSystem();
|
SetActiveSystem();
|
||||||
m_SyncCPU->SetActiveSystem();
|
if (m_SyncCPU->SetActiveSystem())
|
||||||
SetActiveSystem();
|
{
|
||||||
|
SetActiveSystem();
|
||||||
m_Recomp->Run();
|
m_Recomp->Run();
|
||||||
|
} else {
|
||||||
|
SetActiveSystem();
|
||||||
|
_Notify->DisplayError(MSG_PLUGIN_NOT_INIT);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void CN64System::CpuStopped ( void ) {
|
void CN64System::CpuStopped ( void ) {
|
||||||
|
|
Loading…
Reference in New Issue