summaryrefslogtreecommitdiff
path: root/Source/Core/DSPCore/Src/DSPCore.cpp
diff options
context:
space:
mode:
authorMarko Pusljar <LM1234@gmail.com>2009-10-01 15:12:12 +0000
committerMarko Pusljar <LM1234@gmail.com>2009-10-01 15:12:12 +0000
commitf099ea7be4a0affce9e8ab011125eebefc8e370d (patch)
treec6e180327f01c83317ae7b31e476200147dc9751 /Source/Core/DSPCore/Src/DSPCore.cpp
parentc6f0335b624f80ce5fbf2444de494a079e058c48 (diff)
DSPSPY improvements
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4352 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/DSPCore.cpp')
-rw-r--r--Source/Core/DSPCore/Src/DSPCore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DSPCore/Src/DSPCore.cpp b/Source/Core/DSPCore/Src/DSPCore.cpp
index 7a5afca0a6..c8f02fb0d9 100644
--- a/Source/Core/DSPCore/Src/DSPCore.cpp
+++ b/Source/Core/DSPCore/Src/DSPCore.cpp
@@ -183,7 +183,7 @@ void DSPCore_CheckExceptions()
// but for sure they should not be called together therefore the
// g_dsp.exception_in_progress
if (g_dsp.exception_in_progress != -1) {
-#ifdef DEBUG_EXP
+#if defined(_DEBUG) || defined(DEBUGFAST)
ERROR_LOG(DSPLLE, "Firing exception %d failed exception %d active", g_dsp.exceptions, g_dsp.exception_in_progress);
#endif
return;
@@ -206,7 +206,7 @@ void DSPCore_CheckExceptions()
g_dsp.exception_in_progress = i;
break;
} else {
-#ifdef DEBUG_EXP
+#if defined(_DEBUG) || defined(DEBUGFAST)
ERROR_LOG(DSPLLE, "Firing exception %d failed", i);
#endif
}