Fix SDL audio delay
Fixes #647 300ms is just too big, and produces an audible delay. 100ms sounds much better.
This commit is contained in:
parent
7db3c817eb
commit
064fa7b067
|
@ -25,8 +25,8 @@
|
||||||
|
|
||||||
extern int emulating;
|
extern int emulating;
|
||||||
|
|
||||||
// Hold up to 300 ms of data in the ring buffer
|
// Hold up to 100 ms of data in the ring buffer
|
||||||
const double SoundSDL::buftime = 0.300;
|
const double SoundSDL::buftime = 0.100;
|
||||||
|
|
||||||
SoundSDL::SoundSDL():
|
SoundSDL::SoundSDL():
|
||||||
samples_buf(0),
|
samples_buf(0),
|
||||||
|
|
Loading…
Reference in New Issue