diff options
author | Travis Howell | 2009-02-16 09:17:49 +0000 |
---|---|---|
committer | Travis Howell | 2009-02-16 09:17:49 +0000 |
commit | 2d0a897d16d25f10035e97a79ceab4d6036e5c60 (patch) | |
tree | 03ab24646b7a1c0fa38494305216dc71e3a81c21 /engines/sci/tools | |
parent | 7a3c7c1e9a85cb83c3149503adb1e8247986bc7d (diff) | |
download | scummvm-rg350-2d0a897d16d25f10035e97a79ceab4d6036e5c60.tar.gz scummvm-rg350-2d0a897d16d25f10035e97a79ceab4d6036e5c60.tar.bz2 scummvm-rg350-2d0a897d16d25f10035e97a79ceab4d6036e5c60.zip |
Replace strcasecmp with scumm_stricmp.
svn-id: r38356
Diffstat (limited to 'engines/sci/tools')
-rw-r--r-- | engines/sci/tools/scipack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/tools/scipack.cpp b/engines/sci/tools/scipack.cpp index c3a8fcbe35..4e8753b213 100644 --- a/engines/sci/tools/scipack.cpp +++ b/engines/sci/tools/scipack.cpp @@ -61,7 +61,7 @@ test_file(char *filename) { *dot = 0; for (res_type = 0; res_type < sci_invalid_resource - && strcasecmp(filename, sci_resource_types[res_type]); res_type++); + && scumm_stricmp(filename, sci_resource_types[res_type]); res_type++); *dot = '.'; |