rpcsx/rpcs3/Emu/Cell/lv2/sys_ss.cpp
Ani 94ab3ae7cf Misc (#2614)
* cellSysmodule: Register libad modules

Register libad_core, libad_async, libad_billboard_util

* Misc

sys_ss_get_console_open_psid (Called on Project Diva F 2nd),
sys_ss_get_console_id
Stub cellWebBrowserGetUsrdataOnGameExit for Professional Baseball
Spirits 2015
Fix two logs on GcmSys
2017-04-13 19:30:25 +03:00

29 lines
516 B
C++

#include "stdafx.h"
#include "Emu/Cell/PPUThread.h"
#include "sys_ss.h"
namespace vm { using namespace ps3; }
logs::channel sys_ss("sys_ss", logs::level::notice);
s32 sys_ss_get_console_id(vm::ps3::ptr<u8> buf)
{
sys_ss.todo("sys_ss_get_console_id(buf=*0x%x)", buf);
// TODO: Return some actual IDPS?
*buf = 0;
return CELL_OK;
}
s32 sys_ss_get_open_psid(vm::ps3::ptr<CellSsOpenPSID> psid)
{
sys_ss.warning("sys_ss_get_open_psid(psid=*0x%x)", psid);
psid->high = 0;
psid->low = 0;
return CELL_OK;
}