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:
arcum42 2010-05-15 12:43:51 +00:00
parent 0231a47547
commit be28c5a745
1 changed files with 3 additions and 3 deletions

View File

@ -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).