mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
sceNpBasicSendMessage fix
This commit is contained in:
parent
6b43e5c80e
commit
3acd442c2e
1 changed files with 2 additions and 1 deletions
|
@ -1146,7 +1146,8 @@ error_code sceNpBasicSendMessage(vm::cptr<SceNpId> to, vm::cptr<void> data, u32
|
|||
.msgId = 0,
|
||||
.mainType = SCE_NP_BASIC_MESSAGE_MAIN_TYPE_GENERAL,
|
||||
.subType = SCE_NP_BASIC_MESSAGE_GENERAL_SUBTYPE_NONE,
|
||||
.msgFeatures = {}};
|
||||
.msgFeatures = {},
|
||||
.data = std::vector<u8>(static_cast<const u8*>(data.get_ptr()), static_cast<const u8*>(data.get_ptr()) + size)};
|
||||
std::set<std::string> npids;
|
||||
npids.insert(std::string(to->handle.data));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue