diff options
Diffstat (limited to 'engines/sci/scicore/tools.cpp')
| -rw-r--r-- | engines/sci/scicore/tools.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/sci/scicore/tools.cpp b/engines/sci/scicore/tools.cpp index 667f062cd6..2179713720 100644 --- a/engines/sci/scicore/tools.cpp +++ b/engines/sci/scicore/tools.cpp @@ -608,7 +608,7 @@ _fcaseseek(const char *fname, sci_dir_t *dir)  	name = sci_find_first(dir, buf);  	while (name && !retval) { -		if (!strcasecmp(fname, name)) +		if (!scumm_stricmp(fname, name))  			retval = name;  		else  			name = sci_find_next(dir); | 
