Silence some log messages

This commit is contained in:
Eladash 2019-12-20 09:17:22 +02:00 committed by Ivan
parent 9690854e58
commit 71c4a2a15f
9 changed files with 54 additions and 46 deletions

View file

@ -184,7 +184,7 @@ error_code sceNpSnsFbGetAccessToken(u32 handle, vm::cptr<SceNpSnsFbAccessTokenPa
if (g_psn_connection_status == SCE_NP_MANAGER_STATUS_OFFLINE)
{
return SCE_NP_SNS_ERROR_NOT_SIGN_IN;
return not_an_error(SCE_NP_SNS_ERROR_NOT_SIGN_IN);
}
// TODO
@ -309,7 +309,7 @@ error_code sceNpSnsFbGetLongAccessToken(u32 handle, vm::cptr<SceNpSnsFbAccessTok
if (g_psn_connection_status == SCE_NP_MANAGER_STATUS_OFFLINE)
{
return SCE_NP_SNS_ERROR_NOT_SIGN_IN;
return not_an_error(SCE_NP_SNS_ERROR_NOT_SIGN_IN);
}
return CELL_OK;