01-31-2017, 12:47 AM
Tested on build 35b7cf4c
Requires a small hack on cellGame (you can download the hacked build here)
Change
To
Needed libraries:
- libdmux.prx
- libdmuxpamf.prx
- libpamf.prx
- libresc.prx
- libsail.prx
- libsre.prx
PPU Decoder: Interpreter (fast)
SPU Decoder: Interpreter (fast) / Recompiler (ASMJIT)
Screenshot:
http://i.imgur.com/ivQUSBd.jpg
Log:
Requires a small hack on cellGame (you can download the hacked build here)
Change
Code:
s32 cellHddGameGetSizeKB()
{
fmt::throw_exception("Unimplemented" HERE);
}
Code:
s32 cellHddGameGetSizeKB(vm::ptr<u32> size)
{
cellGame.warning("cellHddGameGetSizeKB(): Unimplemented, returning 0");
if (size)
{
*size = 0;
}
return CELL_OK;
}
Needed libraries:
- libdmux.prx
- libdmuxpamf.prx
- libpamf.prx
- libresc.prx
- libsail.prx
- libsre.prx
PPU Decoder: Interpreter (fast)
SPU Decoder: Interpreter (fast) / Recompiler (ASMJIT)
Screenshot:
http://i.imgur.com/ivQUSBd.jpg
Log: