mirror of https://github.com/PCSX2/pcsx2.git
Get SoundTouch working in Linux again.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2737 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
6212789a96
commit
1f2f855f36
|
@ -72,6 +72,7 @@
|
|||
<Unit filename="cpu_detect.h" />
|
||||
<Unit filename="cpu_detect_x86_gcc.cpp" />
|
||||
<Unit filename="mmx_optimized.cpp" />
|
||||
<Unit filename="soundtouch_config.h" />
|
||||
<Unit filename="sse_optimized.cpp" />
|
||||
<Extensions>
|
||||
<envvars />
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
|
||||
#ifndef SOUNDTOUCH_CONFIG_H_INCLUDED
|
||||
#define SOUNDTOUCH_CONFIG_H_INCLUDED
|
||||
|
||||
|
||||
|
||||
#endif // SOUNDTOUCH_CONFIG_H_INCLUDED
|
|
@ -38,7 +38,7 @@ int Interpolation = 1;
|
|||
1. linear interpolation
|
||||
2. cubic interpolation
|
||||
3. hermite interpolation
|
||||
3. catmull-rom interpolation
|
||||
4. catmull-rom interpolation
|
||||
*/
|
||||
|
||||
bool EffectsDisabled = false;
|
||||
|
|
|
@ -33,7 +33,7 @@ int Interpolation = 1;
|
|||
1. linear interpolation
|
||||
2. cubic interpolation
|
||||
3. hermite interpolation
|
||||
3. catmull-rom interpolation
|
||||
4. catmull-rom interpolation
|
||||
*/
|
||||
int ReverbBoost = 0;
|
||||
bool EffectsDisabled = false;
|
||||
|
|
Loading…
Reference in New Issue