spu2x: comment unused variable

This commit is contained in:
Gregory Hainaut 2017-04-23 19:06:29 +02:00
parent d9e43b5d8d
commit 627212290e
1 changed files with 2 additions and 2 deletions

View File

@ -453,7 +453,7 @@ static __forceinline s32 GetVoiceValues(V_Core &thiscore, uint voiceidx)
// generator is accurate in its own right.. but eh, ah well :)
static __forceinline s32 GetNoiseValues(V_Core &thiscore, uint voiceidx)
{
V_Voice &vc(thiscore.Voices[voiceidx]);
// V_Voice &vc(thiscore.Voices[voiceidx]);
s32 retval = GetNoiseValues();
@ -465,7 +465,7 @@ static __forceinline s32 GetNoiseValues(V_Core &thiscore, uint voiceidx)
// GetNoiseValues can't set the phase zero on us unexpectedly
// like GetVoiceValues can. Better assert just in case though..
pxAssume(vc.ADSR.Phase != 0);
// pxAssume(vc.ADSR.Phase != 0);
return retval;
}