SPU2-X: Stupid typo fix.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2731 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2010-03-17 19:59:14 +00:00
parent cc4b78d7ae
commit a24e08fe83
1 changed files with 5 additions and 5 deletions

View File

@ -553,11 +553,11 @@ static __forceinline StereoOut32 MixVoice( uint coreidx, uint voiceidx )
switch( Interpolation )
{
case 0: Value = GetVoiceValues<0>( thiscore, voiceidx );
case 1: Value = GetVoiceValues<1>( thiscore, voiceidx );
case 2: Value = GetVoiceValues<2>( thiscore, voiceidx );
case 3: Value = GetVoiceValues<3>( thiscore, voiceidx );
case 4: Value = GetVoiceValues<4>( thiscore, voiceidx );
case 0: Value = GetVoiceValues<0>( thiscore, voiceidx ); break;
case 1: Value = GetVoiceValues<1>( thiscore, voiceidx ); break;
case 2: Value = GetVoiceValues<2>( thiscore, voiceidx ); break;
case 3: Value = GetVoiceValues<3>( thiscore, voiceidx ); break;
case 4: Value = GetVoiceValues<4>( thiscore, voiceidx ); break;
jNO_DEFAULT;
}