mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
SDL audio: Let's try 256 for fmt.samples. See issue #12705
This commit is contained in:
parent
40abcdb689
commit
ece6edfe83
@ -72,7 +72,7 @@ static void InitSDLAudioDevice() {
|
||||
fmt.freq = 44100;
|
||||
fmt.format = AUDIO_S16;
|
||||
fmt.channels = 2;
|
||||
fmt.samples = 1024;
|
||||
fmt.samples = 256;
|
||||
fmt.callback = &mixaudio;
|
||||
fmt.userdata = nullptr;
|
||||
|
||||
|
@ -99,7 +99,7 @@ static void InitSDLAudioDevice(const std::string &name = "") {
|
||||
fmt.freq = 44100;
|
||||
fmt.format = AUDIO_S16;
|
||||
fmt.channels = 2;
|
||||
fmt.samples = 1024;
|
||||
fmt.samples = 256;
|
||||
fmt.callback = &sdl_mixaudio_callback;
|
||||
fmt.userdata = nullptr;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user