mirror of
https://github.com/holub/mame
synced 2025-10-06 00:54:22 +03:00
don't need %lf as arguments are always promoted to double (nw)
This commit is contained in:
parent
8db46d73a2
commit
8266159312
@ -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());
|
||||
}
|
||||
|
||||
|
||||
|
@ -407,7 +407,7 @@ void ptm6840_device::reload_count(int idx)
|
||||
duration *= m_t3_divisor;
|
||||
}
|
||||
|
||||
PLOG(("MC6840 #%s: reload_count(%d): output = %lf\n", tag(), idx, duration.as_double()));
|
||||
PLOG(("MC6840 #%s: reload_count(%d): output = %f\n", tag(), idx, duration.as_double()));
|
||||
|
||||
#if 0
|
||||
if (!(m_control_reg[idx] & 0x02))
|
||||
|
Loading…
Reference in New Issue
Block a user