mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Core: Don't return true on IsRunning() when stopping emulation.
This commit is contained in:
@ -162,7 +162,7 @@ void DisplayMessage(const std::string& message, int time_in_ms)
|
||||
|
||||
bool IsRunning()
|
||||
{
|
||||
return (GetState() != CORE_UNINITIALIZED) || s_hardware_initialized;
|
||||
return (GetState() != CORE_UNINITIALIZED || s_hardware_initialized) && !s_is_stopping;
|
||||
}
|
||||
|
||||
bool IsRunningAndStarted()
|
||||
|
Reference in New Issue
Block a user