From ce94e14f03570c76ceab5a34d136417033e594d9 Mon Sep 17 00:00:00 2001 From: John Bauer Date: Thu, 26 Oct 2006 22:19:31 +0000 Subject: [PATCH] With the playcommand string hack removed, there are a bunch of places that need the string arguments for playcommand or effectclock in quotes. Unreviewed --- stepmania/src/Background.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Background.cpp b/stepmania/src/Background.cpp index c2d963065e..4e74fab76e 100644 --- a/stepmania/src/Background.cpp +++ b/stepmania/src/Background.cpp @@ -716,7 +716,7 @@ void BackgroundImpl::LoadFromSong( const Song* pSong ) * may look something like "BGAnimation, BGAnimationLayer, Sprite" or it * may be deeper, like "BGAnimation, BGAnimationLayer, BGAnimation, * BGAnimationLayer, Sprite". */ - pBGA->RunCommands( ActorUtil::ParseActorCommands("effectclock,music") ); + pBGA->RunCommands( ActorUtil::ParseActorCommands("effectclock,'music'") ); } }