mirror of
https://github.com/wiiu-env/MochaPayload.git
synced 2024-11-17 13:39:18 +01:00
Don't give ONE PIECE Unlimited World Red access to sd card, this avoid a softlock when booting.
This commit is contained in:
parent
598ae98912
commit
ab360aabe8
@ -174,8 +174,16 @@ int _MCP_ReadCOSXml_patch(uint32_t u1, uint32_t u2, MCPPPrepareTitleInfo *xmlDat
|
|||||||
|
|
||||||
int res = real_MCP_ReadCOSXml_patch(u1, u2, xmlData);
|
int res = real_MCP_ReadCOSXml_patch(u1, u2, xmlData);
|
||||||
|
|
||||||
|
/*
|
||||||
|
For some reason ONE PIECE Unlimited World Red softlocks when it has full FSA permissions.
|
||||||
|
*/
|
||||||
|
if (xmlData->titleId != 0x0005000010175C00 && // ONE PIECE Unlimited World Red USA
|
||||||
|
xmlData->titleId != 0x0005000010175D00 && // ONE PIECE Unlimited World Red EUR
|
||||||
|
xmlData->titleId != 0x0005000010148000) { // ONE PIECE Unlimited World Red JPN
|
||||||
|
|
||||||
// Give us sd access!
|
// Give us sd access!
|
||||||
xmlData->permissions[4].mask = 0xFFFFFFFFFFFFFFFF;
|
xmlData->permissions[4].mask = 0xFFFFFFFFFFFFFFFF;
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
For some reason Mass Effects 3 softlocks when it has full ACP permissions.
|
For some reason Mass Effects 3 softlocks when it has full ACP permissions.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user