From f099ea7be4a0affce9e8ab011125eebefc8e370d Mon Sep 17 00:00:00 2001 From: Marko Pusljar Date: Thu, 1 Oct 2009 15:12:12 +0000 Subject: DSPSPY improvements git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4352 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DSPCore/Src/DSPCore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/DSPCore/Src/DSPCore.cpp') 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 } -- cgit v1.2.3