From 19d6d9ac02a34c80f3cd0553fc77944d372aa83b Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Sun, 19 Jun 2016 11:58:43 -0400 Subject: [PATCH] fix Clang compile (nw) --- src/devices/video/zeus2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/video/zeus2.cpp b/src/devices/video/zeus2.cpp index 3cdad12ece6..02e9b9d9e52 100644 --- a/src/devices/video/zeus2.cpp +++ b/src/devices/video/zeus2.cpp @@ -581,7 +581,7 @@ void zeus2_device::zeus2_register_update(offs_t offset, UINT32 oldval, int logit /* in this mode, crusnexo expects the reads to immediately latch */ //if ((m_zeusbase[0x50] == 0x00a20000) || (m_zeusbase[0x50] == 0x00720000)) - if ((m_zeusbase[0x50] == 0x00a20000)) + if (m_zeusbase[0x50] == 0x00a20000) oldval = m_zeusbase[0x51]; /* this is the address, except in read mode, where it latches values */