add real compression to PSP iso in zip file

This commit is contained in:
Martins Mozeiko
2017-11-06 23:50:22 -08:00
parent fdf3978df6
commit 27315027c3
11 changed files with 1652 additions and 44 deletions
+2 -2
View File
@@ -36,11 +36,11 @@ void out_add_folder(const char* path)
}
}
void out_begin_file(const char* name)
void out_begin_file(const char* name, int compress)
{
if (out_zipped)
{
zip_begin_file(&out_zip, name);
zip_begin_file(&out_zip, name, compress);
}
else
{