From 627212290e6f3cdfce0a7173c1931590cc6b380b Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Sun, 23 Apr 2017 19:06:29 +0200 Subject: [PATCH] spu2x: comment unused variable --- plugins/spu2-x/src/Mixer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/spu2-x/src/Mixer.cpp b/plugins/spu2-x/src/Mixer.cpp index 2574457494..bdbdf216c9 100644 --- a/plugins/spu2-x/src/Mixer.cpp +++ b/plugins/spu2-x/src/Mixer.cpp @@ -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; }