From 51d272e69c5385968185b71271883e0a9ccc5fb8 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Sat, 1 Nov 2014 05:31:16 -0400 Subject: Get mess compiling again - uint32 should be enough, eh? (nw) --- src/emu/bus/cpc/playcity.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emu/bus/cpc/playcity.c b/src/emu/bus/cpc/playcity.c index 945a1fbf183..aea15b5393e 100644 --- a/src/emu/bus/cpc/playcity.c +++ b/src/emu/bus/cpc/playcity.c @@ -126,7 +126,7 @@ void cpc_playcity_device::update_ymz_clock() { // Bit of a hack job here, since there is no way currently to connect the CTC channel output directly to the YMZ clocks. UINT8 rate = m_ctc->get_channel_constant(0); - UINT64 clk = XTAL_4MHz; + UINT32 clk = XTAL_4MHz; switch(rate) { @@ -151,6 +151,6 @@ void cpc_playcity_device::update_ymz_clock() clk = clk / 2; // YMZ294 has an internal /2 divider (not handled in AY core?) m_ymz1->ay_set_clock(clk); m_ymz2->ay_set_clock(clk); - popmessage("YMZ clocks set to %" I64FMT "Hz",clk); + popmessage("YMZ clocks set to %d Hz",clk); } -- cgit v1.2.3