- Fixed: Sorting of files in Zips was broken.

SVN r445 (trunk)
This commit is contained in:
Christoph Oelckers 2007-01-07 10:18:35 +00:00
commit dbb9baf909
3 changed files with 3 additions and 2 deletions

View file

@ -363,7 +363,7 @@ int STACK_ARGS FWadCollection::lumpcmp(const void * a, const void * b)
FWadCollection::LumpRecord * rec1 = (FWadCollection::LumpRecord *)a;
FWadCollection::LumpRecord * rec2 = (FWadCollection::LumpRecord *)b;
return !stricmp(rec1->fullname, rec2->fullname);
return stricmp(rec1->fullname, rec2->fullname);
}