mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 23:41:26 +12:00
Stub cellWebBrowserEstimate2 so some apps proceed
This commit is contained in:
parent
ee2e0b3bbf
commit
2b7c12a3f0
1 changed files with 10 additions and 0 deletions
|
@ -924,6 +924,14 @@ int cellSysutilGetBgmPlaybackStatus(mem_ptr_t<CellBgmPlaybackStatus> status)
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int cellWebBrowserEstimate2(mem8_ptr_t _config, mem32_ptr_t memSize)
|
||||||
|
{
|
||||||
|
// TODO: When cellWebBrowser stuff is implemented, change this to some real
|
||||||
|
// needed memory buffer size.
|
||||||
|
*memSize = 1024 * 1024 * 1; // 1 MB
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
void cellSysutil_init()
|
void cellSysutil_init()
|
||||||
{
|
{
|
||||||
cellSysutil.AddFunc(0x40e895d3, cellSysutilGetSystemParamInt);
|
cellSysutil.AddFunc(0x40e895d3, cellSysutilGetSystemParamInt);
|
||||||
|
@ -994,4 +1002,6 @@ void cellSysutil_init()
|
||||||
//cellSysutil.AddFunc(0xcdc6aefd, cellSaveDataUserAutoLoad);
|
//cellSysutil.AddFunc(0xcdc6aefd, cellSaveDataUserAutoLoad);
|
||||||
//cellSysutil.AddFunc(0x0e091c36, cellSaveDataUserListAutoSave);
|
//cellSysutil.AddFunc(0x0e091c36, cellSaveDataUserListAutoSave);
|
||||||
//cellSysutil.AddFunc(0xe7fa820b, cellSaveDataEnableOverlay);
|
//cellSysutil.AddFunc(0xe7fa820b, cellSaveDataEnableOverlay);
|
||||||
|
|
||||||
|
cellSysutil.AddFunc(0x6d087930, cellWebBrowserEstimate2);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue