Skip to content

Commit

Permalink
Fix typo which broke \r tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberbeing committed Oct 16, 2015
1 parent 7ef76b4 commit e67b464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subtitles/RTS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2625,7 +2625,7 @@ bool CRenderedTextSubtitle::CreateSubFromSSATag(CSubtitle* sub, const AssTagList
break;
case CMD_r: {
STSStyle* val;
style = (tag.params[0].IsEmpty() && m_styles.Lookup(tag.params[0], val) && val) ? *val : org;
style = (!tag.params[0].IsEmpty() && m_styles.Lookup(tag.params[0], val) && val) ? *val : org;
break;
}
case CMD_shad:
Expand Down

0 comments on commit e67b464

Please sign in to comment.