diff options
author | 2019-08-16 17:19:08 +0700 | |
---|---|---|
committer | 2019-08-16 17:19:08 +0700 | |
commit | 59425d370251117bba92c9daadc1fa14ef2fe19d (patch) | |
tree | 131a5c8c888c8c6678edb97de511a9e030b47380 | |
parent | ae25efbfcdfc6e6a463d3a09e4b2ca452404c132 (diff) |
dp8573: fix millisecond double increment (nw)
-rw-r--r-- | src/devices/machine/dp8573.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/devices/machine/dp8573.cpp b/src/devices/machine/dp8573.cpp index 0fe7e2ba1d4..16866607078 100644 --- a/src/devices/machine/dp8573.cpp +++ b/src/devices/machine/dp8573.cpp @@ -84,7 +84,6 @@ void dp8573_device::device_timer(emu_timer &timer, device_timer_id id, int param m_pfr ^= PFR_1MS; - m_millis++; bool carry = false; bool tens_carry = false; time_helper::inc_bcd(&m_millis, 0xff, 0x00, 0x09, &tens_carry); |