mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 14:01:25 +12:00
Return offline according to g_psn_connection_status.
This commit is contained in:
parent
83b09cf047
commit
73f7ab29bc
1 changed files with 7 additions and 1 deletions
|
@ -1191,7 +1191,13 @@ s32 sceNpManagerRequestTicket()
|
||||||
s32 sceNpManagerRequestTicket2()
|
s32 sceNpManagerRequestTicket2()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(sceNp);
|
UNIMPLEMENTED_FUNC(sceNp);
|
||||||
return SCE_NP_ERROR_OFFLINE;
|
|
||||||
|
if (g_psn_connection_status == SCE_NP_MANAGER_STATUS_OFFLINE)
|
||||||
|
{
|
||||||
|
return SCE_NP_ERROR_OFFLINE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 sceNpManagerGetTicket()
|
s32 sceNpManagerGetTicket()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue