From b5e66c27125c9c9acf27fb7531e715cabc329c27 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 31 Oct 2006 10:24:24 +0000 Subject: [PATCH] "Foo\tBar - Baz" should be parsed as title = "Foo", subtitle = "Bar - Baz", not title = "Foo\tBar", subtitle = "- Baz" --- stepmania/src/NotesLoader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/NotesLoader.cpp b/stepmania/src/NotesLoader.cpp index 5233062e82..6ace116ddc 100644 --- a/stepmania/src/NotesLoader.cpp +++ b/stepmania/src/NotesLoader.cpp @@ -18,7 +18,7 @@ bool NotesLoader::Loadable( const RString &sPath ) void NotesLoader::GetMainAndSubTitlesFromFullTitle( const RString &sFullTitle, RString &sMainTitleOut, RString &sSubTitleOut ) { - const RString sLeftSeps[] = { " -", " ~", " (", " [", "\t" }; + const RString sLeftSeps[] = { "\t", " -", " ~", " (", " [" }; for( unsigned i=0; i