Fix get_roomdata_external_list callback event id

This commit is contained in:
RipleyTom
2022-04-10 14:54:21 +02:00
committed by Megamouse
parent 4087b4e6b9
commit cbc067b490
+1 -1
View File
@@ -388,7 +388,7 @@ namespace np
{
sysutil_register_cb([=, size = edata.size()](ppu_thread& cb_ppu) -> s32
{
cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_SearchRoom, event_key, 0, size, cb_info.cb_arg);
cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_GetRoomDataExternalList, event_key, 0, size, cb_info.cb_arg);
return 0;
});
}