mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-24 19:38:32 -06:00
sys_sync.h: fix warning (signed prio)
This commit is contained in:
parent
ee6494c14b
commit
c48ceafc15
@ -111,7 +111,7 @@ public:
|
||||
|
||||
for (auto found = it, end = queue.cend(); found != end; found++)
|
||||
{
|
||||
const u32 _prio = static_cast<E*>(*found)->prio;
|
||||
const s32 _prio = static_cast<E*>(*found)->prio;
|
||||
|
||||
if (_prio < prio)
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user