summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2015-02-18 16:22:23 +0000
committerPierre Bourdon <delroth@gmail.com>2015-02-18 16:22:23 +0000
commit042fcbcbcaeb45f3c7575b7ee242f0aa271caff1 (patch)
tree3ee3171b2e1c3ac49ff389919892dc28f0e5a854 /Source
parent96041a5aca33d34a11f65d35a56792d9191b2f4e (diff)
parentcce503c879449cfa7ce2c71b421fac28acd6a1cb (diff)
Merge pull request #2067 from magumagu/cputhread-assert
Disable an IsCPUThread() assert in Release builds.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/HW/ProcessorInterface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/HW/ProcessorInterface.cpp b/Source/Core/Core/HW/ProcessorInterface.cpp
index 195660e17c..26f19a8716 100644
--- a/Source/Core/Core/HW/ProcessorInterface.cpp
+++ b/Source/Core/Core/HW/ProcessorInterface.cpp
@@ -191,7 +191,7 @@ static const char *Debug_GetInterruptName(u32 _causemask)
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))
{