From 8320fa704a8a9a54e81cdade188680db22faf7a2 Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Wed, 6 Oct 2010 00:36:42 +0000 Subject: [PATCH] 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 --- plugins/spu2-x/src/Linux/Config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/spu2-x/src/Linux/Config.cpp b/plugins/spu2-x/src/Linux/Config.cpp index 88512a668..cfebfbe90 100644 --- a/plugins/spu2-x/src/Linux/Config.cpp +++ b/plugins/spu2-x/src/Linux/Config.cpp @@ -46,7 +46,7 @@ int ReverbBoost = 0; // OUTPUT u32 OutputModule = 0; -int SndOutLatencyMS = 150; +int SndOutLatencyMS = 300; int SynchMode = 0; // Time Stretch, Async or Disabled /*****************************************************************************/ @@ -69,7 +69,7 @@ void ReadSettings() CfgReadStr( L"OUTPUT", L"Output_Module", temp, PortaudioOut->GetIdent() ); 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); PortaudioOut->ReadSettings();