From c48ceafc158968e2ecfcc174c49a467d52d5c3af Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Tue, 18 Feb 2020 14:50:47 +0300 Subject: [PATCH] sys_sync.h: fix warning (signed prio) --- rpcs3/Emu/Cell/lv2/sys_sync.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/lv2/sys_sync.h b/rpcs3/Emu/Cell/lv2/sys_sync.h index 2821fa84fb..46b8930675 100644 --- a/rpcs3/Emu/Cell/lv2/sys_sync.h +++ b/rpcs3/Emu/Cell/lv2/sys_sync.h @@ -111,7 +111,7 @@ public: for (auto found = it, end = queue.cend(); found != end; found++) { - const u32 _prio = static_cast(*found)->prio; + const s32 _prio = static_cast(*found)->prio; if (_prio < prio) {