1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-08-08 23:30:06 +00:00

Fix ttvfs bugs, sync with dev repo

This commit is contained in:
fgenesis 2014-04-07 02:25:58 +02:00
parent 6203bc7ce4
commit b437a7cb2c
13 changed files with 84 additions and 108 deletions

View file

@ -47,7 +47,7 @@ void ZipDir::load()
_archiveHandle->openRead();
const unsigned int files = mz_zip_reader_get_num_files(MZ);
const size_t len = fullnameLen();
const size_t len = fullnameLen() + 1; // +1 for trailing '/' when used as path name in addRecursive()
mz_zip_archive_file_stat fs;
for (unsigned int i = 0; i < files; ++i)