diff --git a/stepmania/src/RageSoundReader_Vorbisfile.cpp b/stepmania/src/RageSoundReader_Vorbisfile.cpp index a72f60ed15..60f477c6ec 100644 --- a/stepmania/src/RageSoundReader_Vorbisfile.cpp +++ b/stepmania/src/RageSoundReader_Vorbisfile.cpp @@ -137,11 +137,6 @@ int RageSoundReader_Vorbisfile::GetLength() const return len; } -int RageSoundReader_Vorbisfile::GetLength_Fast() const -{ - return GetLength(); -} - int RageSoundReader_Vorbisfile::SetPosition( int iFrame ) { eof = false; diff --git a/stepmania/src/RageSoundReader_Vorbisfile.h b/stepmania/src/RageSoundReader_Vorbisfile.h index 4502ca2e1f..0cf31d860d 100644 --- a/stepmania/src/RageSoundReader_Vorbisfile.h +++ b/stepmania/src/RageSoundReader_Vorbisfile.h @@ -15,7 +15,6 @@ public: OpenResult Open( RageFileBasic *f ); int GetLength() const; - int GetLength_Fast() const; int SetPosition( int iFrame ); int Read( char *pBuf, int iFrames ); int GetSampleRate() const; diff --git a/stepmania/src/RageSoundReader_WAV.h b/stepmania/src/RageSoundReader_WAV.h index b163b8d30f..4a8bd3aaee 100644 --- a/stepmania/src/RageSoundReader_WAV.h +++ b/stepmania/src/RageSoundReader_WAV.h @@ -13,7 +13,6 @@ public: OpenResult Open( RString m_sFilename ); void Close(); int GetLength() const; - int GetLength_Fast() const { return GetLength(); } int SetPosition( int iFrame ); int Read( char *pBuf, int iFrames ); int GetSampleRate() const { return m_WavData.m_iSampleRate; }