From 900ebf6583e26e36ff88a6c2e659c9371ff2656b Mon Sep 17 00:00:00 2001 From: Eladash Date: Fri, 7 May 2021 11:34:25 +0300 Subject: [PATCH] sys_event: Typo fix (#10246) --- rpcs3/Emu/Cell/lv2/sys_event.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/lv2/sys_event.cpp b/rpcs3/Emu/Cell/lv2/sys_event.cpp index 79fbf15d21..fe53c3d2d3 100644 --- a/rpcs3/Emu/Cell/lv2/sys_event.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_event.cpp @@ -111,7 +111,7 @@ error_code sys_event_queue_create(cpu_thread& cpu, vm::ptr equeue_id, vm::p return CELL_EINVAL; } - const u32 pshared = ipc_key == SYS_EVENT_QUEUE_LOCAL ? SYS_SYNC_NOT_PROCESS_SHARED : SYS_SYNC_NOT_PROCESS_SHARED; + const u32 pshared = ipc_key == SYS_EVENT_QUEUE_LOCAL ? SYS_SYNC_NOT_PROCESS_SHARED : SYS_SYNC_PROCESS_SHARED; constexpr u32 flags = SYS_SYNC_NEWLY_CREATED; // NOTE: This is inaccurate for multi-process const u64 name = attr->name_u64;