From e87ef650b1aef9f36ee5e437c6a0f3a043869e07 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 21 May 2005 08:28:35 +0000 Subject: [PATCH] fix incorrect newline behavior when wrapping is on --- stepmania/src/BitmapText.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/BitmapText.cpp b/stepmania/src/BitmapText.cpp index c9bf8de43c..36784b70bb 100644 --- a/stepmania/src/BitmapText.cpp +++ b/stepmania/src/BitmapText.cpp @@ -377,7 +377,7 @@ void BitmapText::SetText( const CString& _sText, const CString& _sAlternateText, * and soft hyphens and pretty easily, too. -glenn */ // TODO: Move this wrapping logic into Font CStringArray asLines; - split( m_sText, "\n", asLines ); + split( m_sText, "\n", asLines, false ); for( unsigned line = 0; line < asLines.size(); ++line ) {