From 39226d24ac4a147716084f586194cc4c5fed9a27 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Wed, 8 Apr 2026 20:24:51 +0300 Subject: [PATCH] fixup --- src/core/libraries/np/np_score.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/core/libraries/np/np_score.cpp b/src/core/libraries/np/np_score.cpp index fbc574ba7..1c4fbe015 100644 --- a/src/core/libraries/np/np_score.cpp +++ b/src/core/libraries/np/np_score.cpp @@ -34,14 +34,6 @@ int PS4_SYSV_ABI sceNpScoreChangeModeForOtherSaveDataOwners() { } int PS4_SYSV_ABI sceNpScoreCreateNpTitleCtx(OrbisNpServiceLabel serviceLabel, OrbisNpId* npId) { - if (!npId) { - LOG_ERROR(Lib_NpScore, "npId is null"); - return ORBIS_NP_COMMUNITY_ERROR_INSUFFICIENT_ARGUMENT; - } - if (serviceLabel == ORBIS_NP_INVALID_SERVICE_LABEL) { - LOG_ERROR(Lib_NpScore, "Invalid service label: {}", serviceLabel); - return ORBIS_NP_COMMUNITY_ERROR_INVALID_ARGUMENT; - } LOG_ERROR(Lib_NpScore, "serviceLabel = {}, npId->data = {}", serviceLabel, npId->handle.data); return ORBIS_OK; }