mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
sys_sync.h: fix warning (signed prio)
This commit is contained in:
parent
ee6494c14b
commit
c48ceafc15
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue