From e9a949954fc77c924310cb02e9dbeeba1023b16f Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Fri, 8 Feb 2013 20:29:39 -0800 Subject: [PATCH] Split ass drawings on spaces, not | --- aegisub/src/spline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/spline.cpp b/aegisub/src/spline.cpp index b2a35bcae..2a12dd493 100644 --- a/aegisub/src/spline.cpp +++ b/aegisub/src/spline.cpp @@ -114,7 +114,7 @@ void Spline::DecodeFromAss(std::string const& str) { Vector2D pt(0, 0); // Tokenize the string - boost::char_separator sep("|"); + boost::char_separator sep(" "); for (auto const& token : boost::tokenizer>(str, sep)) { double n; if (agi::util::try_parse(token, &n)) {