diff --git a/stepmania/src/arch/Sound/ALSA9Helpers.cpp b/stepmania/src/arch/Sound/ALSA9Helpers.cpp index 3fdd41c08d..88a08e9867 100644 --- a/stepmania/src/arch/Sound/ALSA9Helpers.cpp +++ b/stepmania/src/arch/Sound/ALSA9Helpers.cpp @@ -68,7 +68,7 @@ bool Alsa9Buf::SetHWParams() if( samplerate_set_explicitly && (int) rate != samplerate ) LOG->Warn("Alsa9Buf::SetHWParams: Couldn't get %ihz (got %ihz instead)", samplerate, rate); - snd_pcm_uframes_t buffersize = 1024*8; + snd_pcm_uframes_t buffersize = 1024*32; err = dsnd_pcm_hw_params_set_buffer_size_near( pcm, hwparams, &buffersize ); ALSA_CHECK("dsnd_pcm_hw_params_set_buffer_size_near");