Previous 199869 Revisions Next

r19620 Monday 17th December, 2012 at 11:32:00 UTC by Phil Bennett
Fix "comparison is always true due to limited range of data type" warning on OS X -nw-
[src/mame/drivers]ecoinf3.c

trunk/src/mame/drivers/ecoinf3.c
r19619r19620
150150   }
151151   DECLARE_WRITE8_MEMBER(ppi8255_intf_a_write_c_strobe)
152152   {
153      if ((data>=0xf0) && (data<=0xff))
153      if (data>=0xf0)
154154      {
155155      //  logerror("%04x - ppi8255_intf_a_(used)write_c %02x (STROBE?)\n", machine().device("maincpu")->safe_pcbase(), data);
156156         strobe_addr = data & 0xf;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team