mirror of https://github.com/PCSX2/pcsx2.git
SPU2-X:
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:
parent
decf1da763
commit
8320fa704a
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue