mirror of https://github.com/PCSX2/pcsx2.git
SPU2-X / portaudio: Fix the requested latency from a hardcoded 200ms to "as close as you can to 64 samples / buffer".
Causes internal buffer size allocations to be as small as possible within portaudio and the OS, so it can have bad effects if the number turns out to be too small. Would be nice if someone with a "real" audio card (Audigy, X-fi or similar) tested WASAPI Exclusive Mode, KS or ASIO with this change. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4851 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
cb74fd2c10
commit
44f0cc140a
|
@ -177,7 +177,7 @@ public:
|
|||
deviceIndex,
|
||||
2,
|
||||
paInt32,
|
||||
0.2f,
|
||||
SndOutPacketSize/(float)SampleRate, // 0.2f,
|
||||
infoPtr
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue