summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-03-04 11:01:03 -0500
committer AJR <ajrhacker@users.noreply.github.com>2020-03-04 11:01:03 -0500
commitda4c1e46a2122069b8dafc2809333d33e0bea656 (patch)
tree8b9c50b235b9622e92985eece1b70fec1ef0363c
parente21d03ec03784214238b65bd86334549dab8e476 (diff)
namco_c355spr.cpp: Fix clang build [-Werror,-Wparentheses-equality] (nw)
-rw-r--r--src/mame/video/namco_c355spr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/namco_c355spr.cpp b/src/mame/video/namco_c355spr.cpp
index 556234aa3a8..9655929cc82 100644
--- a/src/mame/video/namco_c355spr.cpp
+++ b/src/mame/video/namco_c355spr.cpp
@@ -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;