diff options
Diffstat (limited to 'Source/Core/DSPCore/Src/DSPCore.cpp')
| -rw-r--r-- | Source/Core/DSPCore/Src/DSPCore.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/Core/DSPCore/Src/DSPCore.cpp b/Source/Core/DSPCore/Src/DSPCore.cpp index 8824916db9..565e2e6b1a 100644 --- a/Source/Core/DSPCore/Src/DSPCore.cpp +++ b/Source/Core/DSPCore/Src/DSPCore.cpp @@ -34,7 +34,7 @@ #include "DSPIntUtil.h"
SDSP g_dsp;
-BreakPoints dsp_breakpoints;
+DSPBreakpoints dsp_breakpoints;
DSPCoreState core_state = DSPCORE_RUNNING;
Common::Event step_event;
@@ -200,11 +200,9 @@ int DSPCore_RunCycles(int cycles) switch (core_state)
{
case DSPCORE_RUNNING:
-#if 0 // Set to 1 to enable stepping
- // Enable breakpoints
+#if 1 // Set to 0 to disable breakpoints, for a speed boost.
cycles = DSPInterpreter::RunCyclesDebug(cycles);
#else
- //1: enter a fast runloop
cycles = DSPInterpreter::RunCycles(cycles);
#endif
break;
|
