mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-30 12:32:43 +00:00
sceNp: silence some errors
This commit is contained in:
parent
566a8ac5ac
commit
3f2c34edd2
@ -1571,7 +1571,7 @@ error_code sceNpBasicRecvMessageCustom(ppu_thread& ppu, u16 mainType, u32 recvOp
|
||||
|
||||
if (result != CELL_OK)
|
||||
{
|
||||
return SCE_NP_BASIC_ERROR_CANCEL;
|
||||
return not_an_error(SCE_NP_BASIC_ERROR_CANCEL);
|
||||
}
|
||||
|
||||
const auto opt_msg = nph.get_message(chosen_msg_id);
|
||||
|
@ -262,6 +262,9 @@ namespace rsx
|
||||
case selection_code::no:
|
||||
accept_or_deny(SCE_NP_BASIC_MESSAGE_ACTION_DENY);
|
||||
break;
|
||||
case selection_code::canceled:
|
||||
rsx_log.notice("recvmessage dialog was canceled");
|
||||
break;
|
||||
default:
|
||||
rsx_log.error("recvmessage dialog exited with error: %d", return_code);
|
||||
break;
|
||||
|
@ -242,6 +242,9 @@ namespace rsx
|
||||
}
|
||||
break;
|
||||
}
|
||||
case selection_code::canceled:
|
||||
rsx_log.notice("sendmessage dialog was canceled");
|
||||
break;
|
||||
default:
|
||||
rsx_log.error("sendmessage dialog exited with error: %d", return_code);
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user