Quick workaround for the soundtouch / portaudio device selection / latency issue.
Let's simply increase the default output latency to 300ms so even a "default device" in Linux will work.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3881 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2010-10-06 00:36:42 +00:00
parent decf1da763
commit 8320fa704a
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ int ReverbBoost = 0;
// OUTPUT // OUTPUT
u32 OutputModule = 0; u32 OutputModule = 0;
int SndOutLatencyMS = 150; int SndOutLatencyMS = 300;
int SynchMode = 0; // Time Stretch, Async or Disabled int SynchMode = 0; // Time Stretch, Async or Disabled
/*****************************************************************************/ /*****************************************************************************/
@ -69,7 +69,7 @@ void ReadSettings()
CfgReadStr( L"OUTPUT", L"Output_Module", temp, PortaudioOut->GetIdent() ); CfgReadStr( L"OUTPUT", L"Output_Module", temp, PortaudioOut->GetIdent() );
OutputModule = FindOutputModuleById( temp.c_str() );// find the driver index of this module OutputModule = FindOutputModuleById( temp.c_str() );// find the driver index of this module
SndOutLatencyMS = CfgReadInt(L"OUTPUT",L"Latency", 150); SndOutLatencyMS = CfgReadInt(L"OUTPUT",L"Latency", 300);
SynchMode = CfgReadInt( L"OUTPUT", L"Synch_Mode", 0); SynchMode = CfgReadInt( L"OUTPUT", L"Synch_Mode", 0);
PortaudioOut->ReadSettings(); PortaudioOut->ReadSettings();