_sys_heap*, _sys_malloc+, _sys_strcmp implemented

This commit is contained in:
Nekotekina 2015-03-14 23:28:59 +03:00
parent 614cb88116
commit 469926c5e1
3 changed files with 117 additions and 73 deletions

View file

@ -665,7 +665,7 @@ void fsAio(vm::ptr<CellFsAio> aio, bool write, s32 xid, fs_aio_cb_t func)
}
// should be executed directly by FS AIO thread
Emu.GetCallbackManager().Async([func, aio, error, xid, result](PPUThread& CPU)
Emu.GetCallbackManager().Async([=](PPUThread& CPU)
{
func(CPU, aio, error, xid, result);
});