sceNp: silence some errors
This commit is contained in:
@@ -1571,7 +1571,7 @@ error_code sceNpBasicRecvMessageCustom(ppu_thread& ppu, u16 mainType, u32 recvOp
|
|||||||
|
|
||||||
if (result != CELL_OK)
|
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);
|
const auto opt_msg = nph.get_message(chosen_msg_id);
|
||||||
|
|||||||
@@ -262,6 +262,9 @@ namespace rsx
|
|||||||
case selection_code::no:
|
case selection_code::no:
|
||||||
accept_or_deny(SCE_NP_BASIC_MESSAGE_ACTION_DENY);
|
accept_or_deny(SCE_NP_BASIC_MESSAGE_ACTION_DENY);
|
||||||
break;
|
break;
|
||||||
|
case selection_code::canceled:
|
||||||
|
rsx_log.notice("recvmessage dialog was canceled");
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
rsx_log.error("recvmessage dialog exited with error: %d", return_code);
|
rsx_log.error("recvmessage dialog exited with error: %d", return_code);
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -242,6 +242,9 @@ namespace rsx
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case selection_code::canceled:
|
||||||
|
rsx_log.notice("sendmessage dialog was canceled");
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
rsx_log.error("sendmessage dialog exited with error: %d", return_code);
|
rsx_log.error("sendmessage dialog exited with error: %d", return_code);
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user