forked from mia/Aegisub
Fix bug in extradata id list reading
This commit is contained in:
parent
b2768b7abd
commit
7839e8c983
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue