Commit 7e2851ea authored by Gildas Bazin's avatar Gildas Bazin

* src/input/subtitles.c: strcoll is not available on wince.

parent 293d390a
......@@ -145,7 +145,11 @@ static int compare_sub_priority( const void *a, const void *b )
return 1;
}
#ifndef UNDER_CE
return strcoll(((subfn*)a)->psz_fname, ((subfn*)b)->psz_fname);
#else
return strcmp(((subfn*)a)->psz_fname, ((subfn*)b)->psz_fname);
#endif
}
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment