From 1e463aae55ba120b45be106016318e5f96b3d244 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 20 Dec 2002 01:30:49 +0000 Subject: [PATCH] er, firing shouldn't loop --- stepmania/src/RageSoundManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageSoundManager.cpp b/stepmania/src/RageSoundManager.cpp index 53f5d35d7d..38b9a52bfd 100644 --- a/stepmania/src/RageSoundManager.cpp +++ b/stepmania/src/RageSoundManager.cpp @@ -97,7 +97,7 @@ void RageSoundManager::PlayCopy( const RageSound &snd ) RageSound *newsnd = new RageSound(snd); /* PlayCopy's sounds must always stop on their own. */ - newsnd->SetLooping(true); + newsnd->SetLooping(false); newsnd->SetAutoStop(true); /* We're responsible for freeing it. */