Fix b shadowing warning.

This commit is contained in:
riccardom 2009-05-17 19:11:28 +00:00
parent e347ab6c90
commit 3e53a28f3c
1 changed files with 1 additions and 1 deletions

View File

@ -698,7 +698,7 @@ template<SPUInterpolationMode INTERPOLATE_MODE, bool ADPCM_CACHED> static FORCEI
s32 a = (s32)buf16[loc], b;
if(loc < (chan->totlength << shift) - 1)
{
s32 b = (s32)buf16[loc + 1];
b = (s32)buf16[loc + 1];
a = Interpolate<INTERPOLATE_MODE>(a, b, chan->sampcnt);
}
*data = a;