From ed0ea3f4c6625676b9ffc4cd7dace52fa71f5998 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 26 Nov 2006 21:54:47 +0000 Subject: [PATCH] seek()s return frames, not bytes --- stepmania/src/RageSoundReader_Preload.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageSoundReader_Preload.cpp b/stepmania/src/RageSoundReader_Preload.cpp index e80ed2e35f..7bc44117f6 100644 --- a/stepmania/src/RageSoundReader_Preload.cpp +++ b/stepmania/src/RageSoundReader_Preload.cpp @@ -101,7 +101,7 @@ int RageSoundReader_Preload::SetPosition_Accurate(int ms) return 0; } - return m_iPosition; + return ms; } int RageSoundReader_Preload::SetPosition_Fast( int iMS )