diff options
author | 2012-07-28 07:44:59 +0000 | |
---|---|---|
committer | 2012-07-28 07:44:59 +0000 | |
commit | e2113c652a2b54239c7ead740a5561a28396cc27 (patch) | |
tree | cb2d763be43a76ee81ad909daab451c4f85a3e90 /src | |
parent | bf73f643e3641244d7dd2d3f90355c81ca5d830a (diff) |
fix warning with !-operator found by firewave
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/drivers/spoker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/spoker.c b/src/mame/drivers/spoker.c index 70c59bffa29..bf5c8143a48 100644 --- a/src/mame/drivers/spoker.c +++ b/src/mame/drivers/spoker.c @@ -694,7 +694,7 @@ static DRIVER_INIT( 3super8 ) { UINT8 a6, a7, a8, a9, a11, d5 = 0; a6 = BIT(i,6); a7 = BIT(i,7); a8 = BIT(i,8); a9 = BIT(i,9); a11 = BIT(i,11); - d5 = (a6&a8)&((!a7&a11)|(a9&!a11)); + d5 = (a6 & a8) & ((~a7 & a11) | (a9 & ~a11)); ROM[i] ^= d5*0x20; } |