Fixed the build.

Note: I changed the code back to what it was, but perhaps (!state && ..) might be preferable.
This commit is contained in:
Robbbert 2017-07-27 16:00:23 +10:00
parent 59f93c3788
commit 8c49f08001

View File

@ -125,7 +125,7 @@ WRITE_LINE_MEMBER(decodmd_type1_device::rowdata_w)
WRITE_LINE_MEMBER(decodmd_type1_device::rowclock_w)
{
if (!state & m_rowclock) // on negative edge
if (~state & m_rowclock) // on negative edge
m_rowselect = (m_rowselect << 1) | m_rowdata;
m_rowclock = state;
}