silence warnings in RSX stuff

This commit is contained in:
Zion Nimchuk 2017-11-01 23:29:17 -07:00 committed by Nekotekina
parent 8276d29d4f
commit 3a9ae2df9e
7 changed files with 46 additions and 25 deletions

View file

@ -327,7 +327,8 @@ public:
for (auto& e : patch_table.db)
{
//TODO: Use fp comparison with fabsf without hurting performance
if (patched = e.second.test_and_set(tmp[i], &dst[i]))
patched = e.second.test_and_set(tmp[i], &dst[i]);
if (patched)
{
break;
}