Replace strcasecmp with scumm_stricmp.

svn-id: r38356
This commit is contained in:
Travis Howell 2009-02-16 09:17:49 +00:00
parent 7a3c7c1e9a
commit 2d0a897d16
11 changed files with 11 additions and 23 deletions

View file

@ -2374,9 +2374,9 @@ c_disasm_addr(state_t *s) {
size += vpc.offset; /* total segment size */
for (i = 1; i < cmd_paramlength; i++) {
if (!strcasecmp(cmd_params[i].str, "bwt"))
if (!scumm_stricmp(cmd_params[i].str, "bwt"))
do_bwc = 1;
else if (!strcasecmp(cmd_params[i].str, "bc"))
else if (!scumm_stricmp(cmd_params[i].str, "bc"))
do_bytes = 1;
else if (toupper(cmd_params[i].str[0]) == 'C')
op_count = atoi(cmd_params[i].str + 1);