summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/z80ctc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/z80ctc.c')
-rw-r--r--src/emu/machine/z80ctc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/z80ctc.c b/src/emu/machine/z80ctc.c
index aee057c2c1a..8ab638a5e8d 100644
--- a/src/emu/machine/z80ctc.c
+++ b/src/emu/machine/z80ctc.c
@@ -364,7 +364,7 @@ UINT8 z80ctc_device::ctc_channel::read()
{
attotime period = ((m_mode & PRESCALER) == PRESCALER_16) ? m_device->m_period16 : m_device->m_period256;
- VPRINTF(("CTC clock %f\n",ATTOSECONDS_TO_HZ(period.attoseconds)));
+ VPRINTF(("CTC clock %f\n",ATTOSECONDS_TO_HZ(period.attoseconds())));
if (m_timer != NULL)
return ((int)(m_timer->remaining().as_double() / period.as_double()) + 1) & 0xff;