SDL: Increase default audio buffer size to 1024 samples
Jeffrey Pfau jeffrey@endrift.com
Tue, 13 Sep 2016 23:00:01 -0700
2 files changed,
2 insertions(+),
1 deletions(-)
M
CHANGES
→
CHANGES
@@ -96,6 +96,7 @@ - FFmpeg: Full support for libavcodec 56+
- Util: PNG utils should support 16-bit when applicable - Debugger: Add software breakpoint support to gdb - Util: Add PRIz macro for libc versions that don't support %z + - SDL: Increase default audio buffer size to 1024 samples 0.4.1: (2016-07-11) Bugfixes:
M
src/platform/sdl/main.c
→
src/platform/sdl/main.c
@@ -52,7 +52,7 @@ struct mCoreOptions opts = {
.useBios = true, .rewindEnable = true, .rewindBufferCapacity = 600, - .audioBuffers = 512, + .audioBuffers = 1024, .videoSync = false, .audioSync = true, .volume = 0x100,