summaryrefslogtreecommitdiff
path: root/cpu.c
diff options
context:
space:
mode:
authortwinaphex2014-12-10 01:30:47 +0100
committertwinaphex2014-12-10 01:30:47 +0100
commitce374b460b0ad8d2b6234888781dd64c93ddc8d4 (patch)
treeab35ef92a1f279e9057c788201ca45cb49f80592 /cpu.c
parent4a2ab23f770676b2e34ca6aa79da8700251aa4d5 (diff)
downloadpicogpsp-ce374b460b0ad8d2b6234888781dd64c93ddc8d4.tar.gz
picogpsp-ce374b460b0ad8d2b6234888781dd64c93ddc8d4.tar.bz2
picogpsp-ce374b460b0ad8d2b6234888781dd64c93ddc8d4.zip
Remove SDL code in cpu.c
Diffstat (limited to 'cpu.c')
-rw-r--r--cpu.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/cpu.c b/cpu.c
index 21b61e7..b36bac8 100644
--- a/cpu.c
+++ b/cpu.c
@@ -4146,11 +4146,6 @@ void function_cc step_debug(u32 pc, u32 cycles)
{
u32 key = 0;
-#ifndef __LIBRETRO__
- SDL_LockMutex(sound_mutex);
- SDL_PauseAudio(1);
-#endif
-
if(output_field >= num_output_fields)
{
output_field = 0;
@@ -4248,11 +4243,6 @@ void function_cc step_debug(u32 pc, u32 cycles)
case 'q':
quit();
}
-
-#ifndef __LIBRETRO__
- SDL_PauseAudio(0);
- SDL_UnlockMutex(sound_mutex);
-#endif
}
last_instruction = reg[REG_PC];