From 4b6c20b42e466ad6ef0df734dac5c284828af824 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 20 Dec 2002 21:22:39 +0000 Subject: [PATCH] fix cursor resetting --- stepmania/src/arch/Sound/RageSoundDriver_DSound_Software.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_DSound_Software.cpp b/stepmania/src/arch/Sound/RageSoundDriver_DSound_Software.cpp index 52a1ce2750..13bc90d089 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_DSound_Software.cpp +++ b/stepmania/src/arch/Sound/RageSoundDriver_DSound_Software.cpp @@ -181,7 +181,7 @@ void RageSound_DSound_Software::StopMixing(RageSound *snd) { /* Nothing is playing. Reset the sample count; this is just to * prevent eventual overflow. */ - last_cursor_pos = 0; + last_cursor_pos = LastPosition = 0; } }