CSPspEmu.Hle.Formats.audio.Vag.Decoder.HandleSampleKeepHistory C# (CSharp) Method

HandleSampleKeepHistory() private method

private HandleSampleKeepHistory ( int UnpackedSample ) : short
UnpackedSample int
return short
            private short HandleSampleKeepHistory(int UnpackedSample)
            {
                short Sample = HandleSample(UnpackedSample);
                this.CurrentState.History2 = this.CurrentState.History1;
                this.CurrentState.History1 = Sample;
                return Sample;
            }