diff options
-rw-r--r-- | subreader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subreader.c b/subreader.c index 2fb7fd5f36..7617cf3239 100644 --- a/subreader.c +++ b/subreader.c @@ -1157,7 +1157,8 @@ subtitle* sub_fribidi (subtitle *sub, int sub_utf8) int l=sub->lines; int char_set_num; fribidi_boolean log2vis; - if(flip_hebrew) { // Please fix the indentation someday + if (!flip_hebrew) + return sub; fribidi_set_mirroring(1); fribidi_set_reorder_nsm(0); @@ -1197,7 +1198,6 @@ subtitle* sub_fribidi (subtitle *sub, int sub_utf8) free (sub->text[--l]); return ERR; } - } return sub; } |