mirror of https://github.com/PCSX2/pcsx2.git
Fix for release builds.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2963 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
8586e1b90d
commit
e17d65cda6
|
@ -565,8 +565,9 @@ void Threading::PersistentThread::_try_virtual_invoke( void (PersistentThread::*
|
||||||
//
|
//
|
||||||
catch( BaseException& ex )
|
catch( BaseException& ex )
|
||||||
{
|
{
|
||||||
m_except = ex.Clone();
|
BaseException* woot = ex.Clone();
|
||||||
m_except->DiagMsg() = wxsFormat( L"(thread:%s) ", GetName().c_str() ) + m_except->DiagMsg();
|
woot->DiagMsg() += wxsFormat( L"(thread:%s)", GetName().c_str() );
|
||||||
|
m_except = woot;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue