mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Core/Core: Fix getting stuck when Stop is called without emulation running
This commit is contained in:
@ -237,7 +237,7 @@ static void ResetRumble()
|
||||
// Called from GUI thread
|
||||
void Stop() // - Hammertime!
|
||||
{
|
||||
if (GetState() == State::Stopping)
|
||||
if (GetState() == State::Stopping || GetState() == State::Uninitialized)
|
||||
return;
|
||||
|
||||
const SConfig& _CoreParameter = SConfig::GetInstance();
|
||||
|
Reference in New Issue
Block a user