Allow UE3 games to startup

This commit is contained in:
itmo153277 2016-12-05 20:35:05 +03:00
parent 684089ba81
commit 124f5d0097
2 changed files with 21 additions and 11 deletions

View file

@ -195,9 +195,12 @@ s32 cellHddGameExitBroken()
}
s32 cellGameDataGetSizeKB()
s32 cellGameDataGetSizeKB(vm::ptr<u32> size)
{
fmt::throw_exception("Unimplemented" HERE);
if (size) {
*size = 0;
}
return CELL_OK;
}
s32 cellGameDataSetSystemVer()