[XAM] XNotifyGetNext - Fixed null check for !param_ptr (Thanks randprint)

This commit is contained in:
Gliniak 2019-12-14 15:35:15 +01:00 committed by illusion
parent 546bb39844
commit 9977da046c
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ DECLARE_XAM_EXPORT1(XamNotifyCreateListener, kNone, kImplemented);
// https://github.com/CodeAsm/ffplay360/blob/master/Common/AtgSignIn.cpp
dword_result_t XNotifyGetNext(dword_t handle, dword_t match_id,
lpdword_t id_ptr, lpdword_t param_ptr) {
if (!handle | !param_ptr) {
if (!handle || !param_ptr) {
return 0;
}