Require full path for the library file.

This commit is contained in:
leo
2012-11-01 01:05:27 +00:00
parent 53894d79b9
commit b45a7d2bee
4 changed files with 63 additions and 46 deletions
+1 -1
View File
@@ -584,7 +584,7 @@ bool lcZipFile::ExtractFile(const char* FileName, lcMemFile& File, lcuint32 MaxL
{
lcZipFileInfo& FileInfo = mFiles[FileIdx];
if (!strcmp(FileInfo.file_name, FileName))
if (!stricmp(FileInfo.file_name, FileName))
return ExtractFile(FileIdx, File, MaxLength);
}