From 14e554d14e0f26098d3f8e7fe878bc526d3a2e7d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 12 Feb 2004 05:24:22 +0000 Subject: [PATCH] fix filepos desync --- stepmania/src/RageFile.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/RageFile.cpp b/stepmania/src/RageFile.cpp index b32a0bc517..e952b437b7 100644 --- a/stepmania/src/RageFile.cpp +++ b/stepmania/src/RageFile.cpp @@ -277,6 +277,7 @@ int RageFile::Seek( int offset ) if( offset == 0 ) { m_File->Rewind(); + m_FilePos = 0; return 0; }