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:
gigaherz 2011-08-07 16:37:59 +00:00
parent cb74fd2c10
commit 44f0cc140a
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ public:
deviceIndex,
2,
paInt32,
0.2f,
SndOutPacketSize/(float)SampleRate, // 0.2f,
infoPtr
};