From f59e293f6d7659e560613b63d48d9e9e16c72bdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Tue, 23 Sep 2014 14:49:23 +0000 Subject: [PATCH] fixed clang warning in src/mess/drivers/rainbow.c as suggested (nw) --- src/mess/drivers/rainbow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/drivers/rainbow.c b/src/mess/drivers/rainbow.c index a0a58a540b0..20b5b1a0e7b 100644 --- a/src/mess/drivers/rainbow.c +++ b/src/mess/drivers/rainbow.c @@ -1003,7 +1003,7 @@ READ8_MEMBER(rainbow_state::z80_diskstatus_r) // AND 00111011 - return what was WRITTEN to D5-D3, D1, D0 previously // (except D7,D6,D2) - int data = m_z80_diskcontrol && 0x3b; + int data = m_z80_diskcontrol & 0x3b; // D7: DRQ: reflects status of DATA REQUEST signal from FDC. // '1' indicates that FDC has read data OR requires new write data.