mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
namco_c355spr.cpp: Fix clang build [-Werror,-Wparentheses-equality] (nw)
This commit is contained in:
parent
e21d03ec03
commit
da4c1e46a2
@ -556,7 +556,7 @@ void namco_c355spr_device::copy_sprites(const rectangle cliprect)
|
||||
|
||||
while (sprite_ptr != m_sprite_end[no])
|
||||
{
|
||||
if ((sprite_ptr->disable == false))
|
||||
if (sprite_ptr->disable == false)
|
||||
{
|
||||
rectangle clip = sprite_ptr->clip;
|
||||
clip &= cliprect;
|
||||
|
Loading…
Reference in New Issue
Block a user