mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-05 08:52:36 +00:00
Error return on sceNpGetAccountIdA
Confirmed through hardware testing, this returns ORBIS_NP_ERROR_SIGNED_OUT on a signed out console. Parameters are based on fpPS4 code.
This commit is contained in:
parent
d94abffd9a
commit
11192d03c9
@ -940,9 +940,9 @@ int PS4_SYSV_ABI sceNpGetAccountId() {
|
|||||||
return ORBIS_OK;
|
return ORBIS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
int PS4_SYSV_ABI sceNpGetAccountIdA() {
|
int PS4_SYSV_ABI sceNpGetAccountIdA(s32 user_id, u64* account_id) {
|
||||||
LOG_ERROR(Lib_NpManager, "(STUBBED) called");
|
LOG_DEBUG(Lib_NpManager, "user_id {}", user_id);
|
||||||
return ORBIS_OK;
|
return ORBIS_NP_ERROR_SIGNED_OUT;
|
||||||
}
|
}
|
||||||
|
|
||||||
int PS4_SYSV_ABI sceNpGetAccountLanguage() {
|
int PS4_SYSV_ABI sceNpGetAccountLanguage() {
|
||||||
|
Loading…
Reference in New Issue
Block a user