DSP HLE: Fix buffer queue metadata

This commit is contained in:
wheremyfoodat 2024-07-31 02:51:40 +03:00
parent e26f58595e
commit e666afd1a3
2 changed files with 2 additions and 2 deletions

View file

@ -142,7 +142,7 @@ namespace Audio {
} else if (counter1 == 0xffff && counter0 != 0xfffe) {
return 0;
} else {
return counter0 > counter1 ? 0 : 1;
return (counter0 > counter1) ? 0 : 1;
}
}