summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2019-05-29 00:36:53 -0400
committer Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2019-05-29 00:36:53 -0400
commit40a592184557a1976bb84b1a09f49bd273e553c8 (patch)
tree39520faab49dfbd89f69d37d1487e5784574e5af
parent3d67ace098b3c856a56232b44e67a6a0ca7f9958 (diff)
fix gcc 8.3.0 compiler misleading indent warning (nw)
-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;
}