summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu
diff options
context:
space:
mode:
author Cowering <cowering@users.noreply.github.com>2015-07-08 23:35:56 -0500
committer Cowering <cowering@users.noreply.github.com>2015-07-08 23:37:59 -0500
commit8266159312e31a3c4120be7dd969f32f663851ec (patch)
treec122856f8046edede73fa30650ff9504729d11b6 /src/emu/cpu
parent8db46d73a25701178d8acc93510a6e81a86b3c4b (diff)
don't need %lf as arguments are always promoted to double (nw)
Diffstat (limited to 'src/emu/cpu')
-rw-r--r--src/emu/cpu/tlcs90/tlcs90.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/tlcs90/tlcs90.c b/src/emu/cpu/tlcs90/tlcs90.c
index a5c866c7f54..1e3d5dde80a 100644
--- a/src/emu/cpu/tlcs90/tlcs90.c
+++ b/src/emu/cpu/tlcs90/tlcs90.c
@@ -2377,7 +2377,7 @@ void tlcs90_device::t90_start_timer(int i)
m_timer[i]->adjust(period, i, period);
- logerror("%04X: CPU Timer %d started at %lf Hz\n", m_pc.w.l, i, 1.0 / period.as_double());
+ logerror("%04X: CPU Timer %d started at %f Hz\n", m_pc.w.l, i, 1.0 / period.as_double());
}
void tlcs90_device::t90_start_timer4()
@@ -2399,7 +2399,7 @@ void tlcs90_device::t90_start_timer4()
m_timer[4]->adjust(period, 4, period);
- logerror("%04X: CPU Timer 4 started at %lf Hz\n", m_pc.w.l, 1.0 / period.as_double());
+ logerror("%04X: CPU Timer 4 started at %f Hz\n", m_pc.w.l, 1.0 / period.as_double());
}