File diff r12349:d793fab5d83d → r12350:654ff1f37bc4
src/sound/sdl_s.cpp
Show inline comments
 
@@ -27,12 +27,13 @@ const char *SoundDriver_SDL::Start(const
 

	
 
	spec.freq = GetDriverParamInt(parm, "hz", 11025);
 
	spec.format = AUDIO_S16SYS;
 
	spec.channels = 2;
 
	spec.samples = 512;
 
	spec.callback = fill_sound_buffer;
 
	MxInitialize(spec.freq);
 
	SDL_CALL SDL_OpenAudio(&spec, &spec);
 
	SDL_CALL SDL_PauseAudio(0);
 
	return NULL;
 
}
 

	
 
void SoundDriver_SDL::Stop()