From 6dfceeb3f45082984aaee8bc63e9e6f0288e726a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 13 Dec 2003 20:28:27 +0000 Subject: [PATCH] seek fix: header_bytes was zero --- stepmania/src/RageSoundReader_MP3.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageSoundReader_MP3.cpp b/stepmania/src/RageSoundReader_MP3.cpp index 42f4f9c5d3..ed712020ad 100644 --- a/stepmania/src/RageSoundReader_MP3.cpp +++ b/stepmania/src/RageSoundReader_MP3.cpp @@ -832,8 +832,8 @@ bool RageSoundReader_MP3::MADLIB_rewind() mad_stream_init(&mad->Stream); mad_stream_buffer(&mad->Stream, NULL, 0); mad->inbuf_filepos = 0; - mad->header_bytes = 0; - mad->first_frame = true; +// mad->header_bytes = 0; +// mad->first_frame = true; mad->Stream.this_frame = NULL; return true;