Fix bug in extradata id list reading

This commit is contained in:
Niels Martin Hansen 2014-04-25 00:05:32 +02:00
parent b2768b7abd
commit 7839e8c983
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ void AssDialogue::Parse(std::string const& raw) {
while (boost::regex_search(start, end, rematch, idmatcher)) {
auto id = boost::lexical_cast<uint32_t>(rematch.str(1));
ids.push_back(id);
start = rematch.suffix().second;
start = rematch.suffix().first;
}
ExtradataIds = ids;
}