From d5768fd18a06eaf585bae0cbacb7678d8bc4507e Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 5 Nov 2003 02:22:13 +0000 Subject: [PATCH] handle :: in .actor "text" field --- stepmania/src/ActorUtil.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/ActorUtil.cpp b/stepmania/src/ActorUtil.cpp index 5853783903..1d0a478cf3 100644 --- a/stepmania/src/ActorUtil.cpp +++ b/stepmania/src/ActorUtil.cpp @@ -60,6 +60,8 @@ static Actor* LoadActor( CString sPath ) * theme font dirs, too. */ CString alttext; ini.GetValue ( "Actor", "AltText", alttext ); + text.Replace( "::", "\n" ); + alttext.Replace( "::", "\n" ); BitmapText* pBitmapText = new BitmapText; pActor = pBitmapText;