diff --git a/CHANGES b/CHANGES index c49fb6b28..0eea791bb 100644 --- a/CHANGES +++ b/CHANGES @@ -96,6 +96,7 @@ Misc: - 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: diff --git a/src/platform/sdl/main.c b/src/platform/sdl/main.c index 0e89c368f..2df8fe761 100644 --- a/src/platform/sdl/main.c +++ b/src/platform/sdl/main.c @@ -52,7 +52,7 @@ int main(int argc, char** argv) { .useBios = true, .rewindEnable = true, .rewindBufferCapacity = 600, - .audioBuffers = 512, + .audioBuffers = 1024, .videoSync = false, .audioSync = true, .volume = 0x100,