summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/68340tmu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/68340tmu.cpp')
-rw-r--r--src/devices/machine/68340tmu.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/68340tmu.cpp b/src/devices/machine/68340tmu.cpp
index 497bb60131c..f1d0f7f3330 100644
--- a/src/devices/machine/68340tmu.cpp
+++ b/src/devices/machine/68340tmu.cpp
@@ -357,10 +357,10 @@ void mc68340_timer_module_device::do_timer_tick()
{
if (m_timer_counter & 1) // Raising flank, copy shadow to register
{
- // Shadow the counter only if we are NOT in the ICOC mode WHILE the TG bit is set
- if (!((m_cr & REG_CR_MODE_MASK) == REG_CR_MODE_ICOC &&
+ // Shadow the counter only if we are NOT in the ICOC mode WHILE the TG bit is set
+ if (!((m_cr & REG_CR_MODE_MASK) == REG_CR_MODE_ICOC &&
(m_sr & REG_SR_TG) != 0))
- m_cntr_reg = m_cntr;
+ m_cntr_reg = m_cntr;
return;
}