mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +00:00
Bugfix
This commit is contained in:
parent
53efad05c6
commit
b432fb4668
@ -46,7 +46,7 @@ static INLINE void bits_clear_bits(uint32_t *a, uint32_t *b, uint32_t count)
|
|||||||
{
|
{
|
||||||
uint32_t i;
|
uint32_t i;
|
||||||
for (i = 0; i < count;i++)
|
for (i = 0; i < count;i++)
|
||||||
a[i] &= b[i];
|
a[i] &= ~b[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
static INLINE bool bits_any_set(uint32_t* ptr, uint32_t count)
|
static INLINE bool bits_any_set(uint32_t* ptr, uint32_t count)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user