diff options
author | 2015-11-11 16:31:18 +0100 | |
---|---|---|
committer | 2015-11-11 16:31:18 +0100 | |
commit | d1dc775f9b686170416fbca6a615fbea108d0ff1 (patch) | |
tree | 64c9053aa0ac1c0d9b15a5d628d5a2ca8e296db8 /src/emu/timer.cpp | |
parent | 7c7e62455e91e9eae51577cd06c4fd38858a3d50 (diff) |
Some cleanups and init fixes with help of ReSharper C++ (nw)
Diffstat (limited to 'src/emu/timer.cpp')
-rw-r--r-- | src/emu/timer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/timer.cpp b/src/emu/timer.cpp index f92d0ecce9b..7d089ca4655 100644 --- a/src/emu/timer.cpp +++ b/src/emu/timer.cpp @@ -217,7 +217,7 @@ void timer_device::device_reset() case TIMER_TYPE_PERIODIC: { // convert the period into attotime - attotime period = attotime::never; + attotime period; if (m_period > attotime::zero) { period = m_period; |