Bug fixes for alternative zip layout and define to toggle it on

This commit is contained in:
Tim Newell 2012-12-15 15:30:10 -05:00 committed by DavidWyand-GG
parent 3df2aa64f4
commit 31036c4031
9 changed files with 46 additions and 5 deletions

View file

@ -70,7 +70,11 @@ bool MountZips(const String &root)
for(S32 i = 0;i < outList.size();++i)
{
String &zipfile = outList[i];
#ifdef TORQUE_ZIP_DISK_LAYOUT
mounted += (S32)Mount(root, new ZipFileSystem(zipfile, false));
#else
mounted += (S32)Mount(root, new ZipFileSystem(zipfile, true));
#endif
}
return mounted == outList.size();