Core: Don't return true on IsRunning() when stopping emulation.
This commit is contained in:
parent
59eb7a864d
commit
0092f5207b
|
@ -163,7 +163,7 @@ void DisplayMessage(const std::string& message, int time_in_ms)
|
||||||
|
|
||||||
bool IsRunning()
|
bool IsRunning()
|
||||||
{
|
{
|
||||||
return (GetState() != CORE_UNINITIALIZED) || s_hardware_initialized;
|
return (GetState() != CORE_UNINITIALIZED || s_hardware_initialized) && !s_is_stopping;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IsRunningAndStarted()
|
bool IsRunningAndStarted()
|
||||||
|
|
Loading…
Reference in New Issue