mirror of https://github.com/PCSX2/pcsx2.git
Core: AppCorePlugins.cpp add missing const
This commit is contained in:
parent
0192c538ee
commit
acd7fa90ef
|
@ -554,7 +554,7 @@ void SysExecEvent_SaveSinglePlugin::InvokeEvent()
|
||||||
GetCorePlugins().Freeze( m_pid, save );
|
GetCorePlugins().Freeze( m_pid, save );
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wasOpen = GetCorePlugins().IsOpen(m_pid);
|
const bool wasOpen = GetCorePlugins().IsOpen(m_pid);
|
||||||
|
|
||||||
GetCorePlugins().Close( m_pid );
|
GetCorePlugins().Close( m_pid );
|
||||||
_post_and_wait( paused_core );
|
_post_and_wait( paused_core );
|
||||||
|
|
Loading…
Reference in New Issue