]> granicus.if.org Git - libass/commitdiff
Remove misleading comment about style case sensitivity
authorGrigori Goronzy <greg@blackbox>
Sat, 9 Apr 2011 02:23:39 +0000 (04:23 +0200)
committerGrigori Goronzy <greg@blackbox>
Sat, 9 Apr 2011 02:25:23 +0000 (04:25 +0200)
VSFilter always matches style names case sensitive.

libass/ass.c

index ff2e3953741c0a3384bbc3e8bda9dd7ed4577007..8e4f0f46f11aff5e37ad1fca208a1a14a1c092ad 100644 (file)
@@ -203,7 +203,6 @@ static int lookup_style(ASS_Track *track, char *name)
     if (*name == '*')
         ++name;                 // FIXME: what does '*' really mean ?
     for (i = track->n_styles - 1; i >= 0; --i) {
-        // FIXME: mb strcasecmp ?
         if (strcmp(track->styles[i].Name, name) == 0)
             return i;
     }