mirror of
https://github.com/mmozeiko/pkg2zip.git
synced 2026-09-03 03:29:59 +03:00
better description what kind of psp is unpacking
This commit is contained in:
@@ -397,8 +397,9 @@ int main(int argc, char* argv[])
|
|||||||
char path[1024];
|
char path[1024];
|
||||||
if (psp)
|
if (psp)
|
||||||
{
|
{
|
||||||
snprintf(path, sizeof(path), "%s [%.9s] [%s].zip", title, pkg_header + 0x37, content_type == 6 ? "PSX" : content_type == 7 ? "PSP" : "PSPMini");
|
const char* type_str = content_type == 6 ? "PSX" : content_type == 7 ? "PSP" : "PSPMini";
|
||||||
printf("[*] unpacking PSP\n");
|
snprintf(path, sizeof(path), "%s [%.9s] [%s].zip", title, pkg_header + 0x37, type_str);
|
||||||
|
printf("[*] unpacking %s\n", type_str);
|
||||||
}
|
}
|
||||||
else if (dlc)
|
else if (dlc)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user