summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/er1400.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/er1400.cpp')
-rw-r--r--src/devices/machine/er1400.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/er1400.cpp b/src/devices/machine/er1400.cpp
index 7a49272fe5c..c2375294ba5 100644
--- a/src/devices/machine/er1400.cpp
+++ b/src/devices/machine/er1400.cpp
@@ -261,7 +261,7 @@ WRITE_LINE_MEMBER(er1400_device::c1_w)
return;
m_code_input = (m_code_input & 3) | (bool(state) << 2);
- if (!m_data_propagation_timer->enabled())
+ if (!m_data_propagation_timer->running())
m_data_propagation_timer->adjust(attotime::from_usec(20));
}
@@ -276,7 +276,7 @@ WRITE_LINE_MEMBER(er1400_device::c2_w)
return;
m_code_input = (m_code_input & 5) | (bool(state) << 1);
- if (!m_data_propagation_timer->enabled())
+ if (!m_data_propagation_timer->running())
m_data_propagation_timer->adjust(attotime::from_usec(20));
}
@@ -291,7 +291,7 @@ WRITE_LINE_MEMBER(er1400_device::c3_w)
return;
m_code_input = (m_code_input & 6) | bool(state);
- if (!m_data_propagation_timer->enabled())
+ if (!m_data_propagation_timer->running())
m_data_propagation_timer->adjust(attotime::from_usec(20));
}