summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ecoinf3.c
diff options
context:
space:
mode:
author Phil Bennett <philipjbennett@users.noreply.github.com>2012-12-17 11:32:00 +0000
committer Phil Bennett <philipjbennett@users.noreply.github.com>2012-12-17 11:32:00 +0000
commitdeedd775b917bfb6b658038232b23419b895b82c (patch)
tree6733cc946527e0eb2b08b5a818de35493a3e53fb /src/mame/drivers/ecoinf3.c
parent6a9e385865519ebda483da60b01c0e3728cdf290 (diff)
Fix "comparison is always true due to limited range of data type" warning on OS X -nw-
Diffstat (limited to 'src/mame/drivers/ecoinf3.c')
-rw-r--r--src/mame/drivers/ecoinf3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/ecoinf3.c b/src/mame/drivers/ecoinf3.c
index 1de0ceefad6..870d95597ca 100644
--- a/src/mame/drivers/ecoinf3.c
+++ b/src/mame/drivers/ecoinf3.c
@@ -150,7 +150,7 @@ public:
}
DECLARE_WRITE8_MEMBER(ppi8255_intf_a_write_c_strobe)
{
- if ((data>=0xf0) && (data<=0xff))
+ if (data>=0xf0)
{
// logerror("%04x - ppi8255_intf_a_(used)write_c %02x (STROBE?)\n", machine().device("maincpu")->safe_pcbase(), data);
strobe_addr = data & 0xf;