diff --git a/stepmania/src/arch/Sound/ALSA9Helpers.cpp b/stepmania/src/arch/Sound/ALSA9Helpers.cpp index 3e8035d652..3f1f3d1714 100644 --- a/stepmania/src/arch/Sound/ALSA9Helpers.cpp +++ b/stepmania/src/arch/Sound/ALSA9Helpers.cpp @@ -350,13 +350,6 @@ int64_t Alsa9Buf::GetPosition() const return last_cursor_pos - delay; } -void Alsa9Buf::Reset() -{ - /* Nothing is playing. Reset the sample count; this is just to - * prevent eventual overflow. */ - last_cursor_pos = 0; -} - void Alsa9Buf::Play() { /* NOP. It'll start playing when it gets some data. */ diff --git a/stepmania/src/arch/Sound/ALSA9Helpers.h b/stepmania/src/arch/Sound/ALSA9Helpers.h index ea3af3196c..d17129fd4b 100644 --- a/stepmania/src/arch/Sound/ALSA9Helpers.h +++ b/stepmania/src/arch/Sound/ALSA9Helpers.h @@ -40,7 +40,6 @@ public: void Write( const Sint16 *buffer, int frames ); unsigned FindSampleRate( unsigned rate ); - void Reset(); void Play(); void Stop(); void SetVolume(float vol);