Remove SDL code in cpu.c

This commit is contained in:
twinaphex 2014-12-10 01:30:47 +01:00
parent 4a2ab23f77
commit ce374b460b
1 changed files with 0 additions and 10 deletions

10
cpu.c
View File

@ -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];