summaryrefslogtreecommitdiff
path: root/Source/Core/DSPCore/Src/DSPCore.cpp
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2009-11-08 21:37:38 +0000
committernakeee <nakeee@gmail.com>2009-11-08 21:37:38 +0000
commit1c95100eb18cfdeeec982a1afc6a21fd796e06be (patch)
tree8d5facbf9ea9e4401a91f13d5e4f8b7d6246bc09 /Source/Core/DSPCore/Src/DSPCore.cpp
parent0ac07e8aa8edfd28c1ca5c357fdd9f17a2a2dbde (diff)
DSPLLE: moved breakpoint to debug to gain some speed
clrl fix from lordmark git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4521 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/DSPCore.cpp')
-rw-r--r--Source/Core/DSPCore/Src/DSPCore.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/DSPCore/Src/DSPCore.cpp b/Source/Core/DSPCore/Src/DSPCore.cpp
index c8f02fb0d9..06fe875911 100644
--- a/Source/Core/DSPCore/Src/DSPCore.cpp
+++ b/Source/Core/DSPCore/Src/DSPCore.cpp
@@ -223,7 +223,8 @@ int DSPCore_RunCycles(int cycles)
switch (core_state)
{
case DSPCORE_RUNNING:
-#if 1 // Set to 0 to disable breakpoints, for a speed boost.
+ // Seems to slow things down
+#if defined(_DEBUG) || defined(DEBUGFAST)
cycles = DSPInterpreter::RunCyclesDebug(cycles);
#else
cycles = DSPInterpreter::RunCycles(cycles);