mirror of https://github.com/PCSX2/pcsx2.git
SPU2-X: Comment gigaherz hack better and disable it by default. (doesn't seem to make much of a diff either way though)
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3228 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
29fc645157
commit
0f39ecb725
|
@ -212,8 +212,9 @@ StereoOut32 V_Core::DoReverb( const StereoOut32& Input )
|
||||||
// interpolative, instead of the funky ^0x8000 stuff. (better result, faster)
|
// interpolative, instead of the funky ^0x8000 stuff. (better result, faster)
|
||||||
|
|
||||||
// A hack! Why? Because gigaherz decided the other version didn't make sense. --air
|
// A hack! Why? Because gigaherz decided the other version didn't make sense. --air
|
||||||
#define A_HACK 1
|
// Set to 1 to enable gigaherz hack mode, set to 0 to use Neill's version.
|
||||||
#if A_HACK
|
#define A_HACK 0
|
||||||
|
#if !A_HACK
|
||||||
const s32 FB_A0 = _spu2mem[fb_src_a0] * Revb.FB_ALPHA;
|
const s32 FB_A0 = _spu2mem[fb_src_a0] * Revb.FB_ALPHA;
|
||||||
const s32 FB_A1 = _spu2mem[fb_src_a1] * Revb.FB_ALPHA;
|
const s32 FB_A1 = _spu2mem[fb_src_a1] * Revb.FB_ALPHA;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue