Merge pull request #2067 from magumagu/cputhread-assert
Disable an IsCPUThread() assert in Release builds.
This commit is contained in:
commit
042fcbcbca
|
@ -191,7 +191,7 @@ static const char *Debug_GetInterruptName(u32 _causemask)
|
||||||
|
|
||||||
void SetInterrupt(u32 _causemask, bool _bSet)
|
void SetInterrupt(u32 _causemask, bool _bSet)
|
||||||
{
|
{
|
||||||
_assert_msg_(POWERPC, Core::IsCPUThread(), "SetInterrupt from wrong thread");
|
_dbg_assert_msg_(POWERPC, Core::IsCPUThread(), "SetInterrupt from wrong thread");
|
||||||
|
|
||||||
if (_bSet && !(m_InterruptCause & _causemask))
|
if (_bSet && !(m_InterruptCause & _causemask))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue