mirror of https://github.com/PCSX2/pcsx2.git
spu2-x: I'm pretty sure that these lines should have had breaks after them... (pointed out by gregory.)
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3015 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
0231a47547
commit
be28c5a745
|
@ -695,9 +695,9 @@ StereoOut32 V_Core::Mix( const VoiceMixSet& inVoices, const StereoOut32& Input,
|
|||
switch (ReverbBoost)
|
||||
{
|
||||
case 0: break;
|
||||
case 1: temp = 2;
|
||||
case 2: temp = 4;
|
||||
case 3: temp = 8;
|
||||
case 1: temp = 2; break;
|
||||
case 2: temp = 4; break;
|
||||
case 3: temp = 8; break;
|
||||
}
|
||||
// Mix Dry + Wet
|
||||
// (master volume is applied later to the result of both outputs added together).
|
||||
|
|
Loading…
Reference in New Issue