Entitlements are never found (#17306)
Some checks failed
Build RPCS3 / RPCS3 Linux ubuntu-24.04-arm clang (push) Waiting to run
Build RPCS3 / RPCS3 Mac Intel (push) Waiting to run
Build RPCS3 / RPCS3 Mac Apple Silicon (push) Waiting to run
Build RPCS3 / RPCS3 Windows (push) Waiting to run
Generate Translation Template / Generate Translation Template (push) Failing after 24s
Build RPCS3 / RPCS3 Linux ubuntu-24.04 gcc (push) Has been skipped
Build RPCS3 / RPCS3 Linux ubuntu-24.04 clang (push) Has been skipped
Build RPCS3 / RPCS3 FreeBSD (push) Has been skipped

Minor change, we don't support entitlements atm.
This commit is contained in:
RipleyTom 2025-06-14 08:38:38 +02:00 committed by GitHub
parent 85c813d84c
commit 9610d45ebf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4265,7 +4265,7 @@ error_code sceNpManagerGetEntitlementById(vm::cptr<char> entId, vm::ptr<SceNpEnt
return SCE_NP_ERROR_INVALID_ARGUMENT;
}
return CELL_OK;
return SCE_NP_ERROR_ID_NOT_FOUND;
}
error_code sceNpManagerGetSigninId(vm::ptr<void> signInId)