Don't show a dialog on quit when EmuThread hangs.

It's not like it will prevent PPSSPP from quitting.
This commit is contained in:
Unknown W. Brackets 2013-06-30 22:50:58 -07:00
parent e6bb49fb0d
commit 27826999de

View File

@ -73,8 +73,7 @@ void EmuThread_Stop()
Core_WaitInactive(800);
if (WAIT_TIMEOUT == WaitForSingleObject(emuThread, 800))
{
MessageBox(MainWindow::GetHWND(),"Wait for emuthread timed out! :(\n"
"please alert the developer to possible deadlock or infinite loop in emuthread!", 0, 0);
_dbg_assert_msg_(COMMON, false, "Wait for EmuThread timed out.");
}
{
EmuThreadLockGuard lock;