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)) {