From 544bacf54e1456ecd51571fe6045323598967264 Mon Sep 17 00:00:00 2001 From: Anthony Miyaguchi Date: Thu, 27 Mar 2014 18:57:28 -0700 Subject: [PATCH] Quick one line change fixes a hang after failing to run an *.elf file and stopping the emulator via the Stop button. --- rpcs3/Emu/CPU/CPUThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/CPU/CPUThread.cpp b/rpcs3/Emu/CPU/CPUThread.cpp index b4c6a5e025..fda8b8807a 100644 --- a/rpcs3/Emu/CPU/CPUThread.cpp +++ b/rpcs3/Emu/CPU/CPUThread.cpp @@ -30,7 +30,7 @@ CPUThread::~CPUThread() void CPUThread::Close() { - ThreadBase::Stop(); + ThreadBase::Stop(m_sync_wait); DoStop(); delete m_dec;