one more fix, oops

This commit is contained in:
Ricardo Quesada 2014-10-10 18:28:05 -07:00
parent 3cd2163558
commit e03fb86990
1 changed files with 1 additions and 1 deletions

View File

@ -648,7 +648,7 @@ std::string ZipFile::getNextFilename()
if (unzGoToNextFile(_data->zipFile) != UNZ_OK) return emptyFilename;
std::string path;
unz_file_info info;
getCurrentFileInfo(&path, (cocos2d::unz_file_info*)&info);
getCurrentFileInfo(&path, &info);
return path;
}