mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 15:31:26 +12:00
hle: Stub function Unimplemented in NpSns.
This commit is contained in:
parent
efe6a6cf53
commit
a9c26b40dd
1 changed files with 9 additions and 5 deletions
|
@ -137,28 +137,32 @@ error_code sceNpSnsFbGetAccessToken(u32 handle, vm::cptr<SceNpSnsFbAccessTokenPa
|
||||||
|
|
||||||
s32 sceNpSnsFbStreamPublish()
|
s32 sceNpSnsFbStreamPublish()
|
||||||
{
|
{
|
||||||
fmt::throw_exception("Unimplemented" HERE);
|
UNIMPLEMENTED_FUNC(sceNpSns);
|
||||||
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 sceNpSnsFbCheckThrottle()
|
s32 sceNpSnsFbCheckThrottle()
|
||||||
{
|
{
|
||||||
fmt::throw_exception("Unimplemented" HERE);
|
UNIMPLEMENTED_FUNC(sceNpSns);
|
||||||
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 sceNpSnsFbCheckConfig()
|
s32 sceNpSnsFbCheckConfig()
|
||||||
{
|
{
|
||||||
sceNpSns.todo("sceNpSnsFbCheckConfig()");
|
UNIMPLEMENTED_FUNC(sceNpSns);
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 sceNpSnsFbLoadThrottle()
|
s32 sceNpSnsFbLoadThrottle()
|
||||||
{
|
{
|
||||||
fmt::throw_exception("Unimplemented" HERE);
|
UNIMPLEMENTED_FUNC(sceNpSns);
|
||||||
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 sceNpSnsFbGetLongAccessToken()
|
s32 sceNpSnsFbGetLongAccessToken()
|
||||||
{
|
{
|
||||||
fmt::throw_exception("Unimplemented" HERE);
|
UNIMPLEMENTED_FUNC(sceNpSns);
|
||||||
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue