mirror of https://github.com/mgba-emu/mgba.git
SDL: Increase default audio buffer size to 1024 samples
This commit is contained in:
parent
4c38f76956
commit
dd76386f4c
1
CHANGES
1
CHANGES
|
@ -96,6 +96,7 @@ Misc:
|
||||||
- Util: PNG utils should support 16-bit when applicable
|
- Util: PNG utils should support 16-bit when applicable
|
||||||
- Debugger: Add software breakpoint support to gdb
|
- Debugger: Add software breakpoint support to gdb
|
||||||
- Util: Add PRIz macro for libc versions that don't support %z
|
- 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)
|
0.4.1: (2016-07-11)
|
||||||
Bugfixes:
|
Bugfixes:
|
||||||
|
|
|
@ -52,7 +52,7 @@ int main(int argc, char** argv) {
|
||||||
.useBios = true,
|
.useBios = true,
|
||||||
.rewindEnable = true,
|
.rewindEnable = true,
|
||||||
.rewindBufferCapacity = 600,
|
.rewindBufferCapacity = 600,
|
||||||
.audioBuffers = 512,
|
.audioBuffers = 1024,
|
||||||
.videoSync = false,
|
.videoSync = false,
|
||||||
.audioSync = true,
|
.audioSync = true,
|
||||||
.volume = 0x100,
|
.volume = 0x100,
|
||||||
|
|
Loading…
Reference in New Issue