mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
Fix sceNpBasicSetPresence when data is nullptr and size is 0
This commit is contained in:
parent
2a1af17f67
commit
0227b16d06
2 changed files with 5 additions and 5 deletions
|
|
@ -823,8 +823,8 @@ namespace np
|
|||
|
||||
for (auto& [npid, pr_info] : current_presences)
|
||||
{
|
||||
// Only communicates info about online users with presence
|
||||
if (!pr_info.online || pr_info.pr_com_id.data[0] == 0)
|
||||
// Only communicates info about online users
|
||||
if (!pr_info.online)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue