From 9800ead9149616c97a2343237b43c0903a5153c5 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 2 Oct 2003 09:19:23 +0000 Subject: [PATCH] simplify --- stepmania/src/RageSoundReader_MP3.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/stepmania/src/RageSoundReader_MP3.cpp b/stepmania/src/RageSoundReader_MP3.cpp index dcd4282434..0fe23f66ad 100644 --- a/stepmania/src/RageSoundReader_MP3.cpp +++ b/stepmania/src/RageSoundReader_MP3.cpp @@ -971,16 +971,6 @@ int RageSoundReader_MP3::SetPosition_estimate( int ms ) int RageSoundReader_MP3::SetPosition_Accurate( int ms ) { - /* We don't actually need to do this, since the below seeks are just as fast - * and accurate for ms == 0. However, we need to reproduce a glitch in - * MADLIB_rewind to avoid changing sync. :( */ - if( !ms ) - { - if( !MADLIB_rewind() ) - return -1; /* error */ - return 0; /* error */ - } - /* Seek using our own internal (accurate) TOC. */ if( SetPosition_toc( ms, false ) == -1 ) return -1; /* error */