mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12: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++)
|
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)
|
if (_prio < prio)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue