mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-22 04:24:44 +00:00
Stub return value of sceNpCreateRequest
This commit is contained in:
parent
7e533ccf50
commit
7a717d3009
2 changed files with 6 additions and 5 deletions
|
@ -913,12 +913,13 @@ int PS4_SYSV_ABI sceNpCreateAsyncRequest() {
|
|||
}
|
||||
|
||||
int PS4_SYSV_ABI sceNpCreateRequest() {
|
||||
LOG_ERROR(Lib_NpManager, "(STUBBED) called");
|
||||
return ORBIS_OK;
|
||||
LOG_ERROR(Lib_NpManager, "(DUMMY) called");
|
||||
static int id = 0;
|
||||
return ++id;
|
||||
}
|
||||
|
||||
int PS4_SYSV_ABI sceNpDeleteRequest() {
|
||||
LOG_ERROR(Lib_NpManager, "(STUBBED) called");
|
||||
int PS4_SYSV_ABI sceNpDeleteRequest(int reqId) {
|
||||
LOG_ERROR(Lib_NpManager, "(DUMMY) called reqId = {}", reqId);
|
||||
return ORBIS_OK;
|
||||
}
|
||||
|
||||
|
|
|
@ -216,7 +216,7 @@ int PS4_SYSV_ABI sceNpCheckNpReachability();
|
|||
int PS4_SYSV_ABI sceNpCheckPlus();
|
||||
int PS4_SYSV_ABI sceNpCreateAsyncRequest();
|
||||
int PS4_SYSV_ABI sceNpCreateRequest();
|
||||
int PS4_SYSV_ABI sceNpDeleteRequest();
|
||||
int PS4_SYSV_ABI sceNpDeleteRequest(int reqId);
|
||||
int PS4_SYSV_ABI sceNpGetAccountAge();
|
||||
int PS4_SYSV_ABI sceNpGetAccountCountry();
|
||||
int PS4_SYSV_ABI sceNpGetAccountCountryA();
|
||||
|
|
Loading…
Add table
Reference in a new issue