Fix override block parsing

Originally committed to SVN as r1218.
This commit is contained in:
Dan Donovan 2007-06-09 21:45:14 +00:00
parent f7fe30b7c9
commit 77e2f20424
1 changed files with 2 additions and 3 deletions

View File

@ -468,7 +468,7 @@ void AssDialogue::ParseASSTags () {
work = Text.substr(cur);
end = len;
}
else work = Text.substr(cur,end-cur);
else work = Text.substr(cur,end-cur+1);
if (work.Find(_T("\\")) == wxNOT_FOUND) {
//We've found an override block with no backslashes
@ -481,8 +481,7 @@ void AssDialogue::ParseASSTags () {
}
else {
work = Text.substr(cur+1,end-cur-1);
work = work.substr(1,work.Len()-2); // trim { and }
// Create block
AssDialogueBlockOverride *block = new AssDialogueBlockOverride;
block->parent = this;