Patch unusual way of checking for firmware version.

This commit is contained in:
LunaMoo 2017-06-05 17:03:43 +02:00
parent c5ebeb4273
commit 21497b5235

View file

@ -71,7 +71,9 @@ static int scePauth_F7AA47F6(u32 srcPtr, int srcLength, u32 destLengthPtr, u32 w
fwrite(key, 1, 16, fp);
fclose(fp);
return -1;
// We failed decrypting and dumped encrypted files, some games like Idolmaster
// use this to check for firmware version, so let's still return no problem.
return 0;
}
static int scePauth_98B83B5D(u32 srcPtr, int srcLength, u32 destLengthPtr, u32 workArea)