all repos — mgba @ dd76386f4cee134237f6a86c37f178eeca8bd44b

mGBA Game Boy Advance Emulator

SDL: Increase default audio buffer size to 1024 samples
Jeffrey Pfau jeffrey@endrift.com
Tue, 13 Sep 2016 23:00:01 -0700
commit

dd76386f4cee134237f6a86c37f178eeca8bd44b

parent

4c38f769565e8ddd7d3a8eef1a41975206c129a0

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -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.csrc/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,