From b44629ad738cfda877d1835618ad0734fe09f75b Mon Sep 17 00:00:00 2001 From: arbee Date: Mon, 28 Sep 2015 15:07:34 -0400 Subject: Same (nw) --- src/mess/drivers/hk68v10.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/mess/drivers') diff --git a/src/mess/drivers/hk68v10.c b/src/mess/drivers/hk68v10.c index e2fb52c7083..20fa8dc670c 100644 --- a/src/mess/drivers/hk68v10.c +++ b/src/mess/drivers/hk68v10.c @@ -184,10 +184,8 @@ #endif #ifdef _MSC_VER -#define LLFORMAT "%I64%" #define FUNCNAME __func__ #else -#define LLFORMAT "%lld" #define FUNCNAME __PRETTY_FUNCTION__ #endif @@ -251,7 +249,7 @@ INPUT_PORTS_END /* Start it up */ void hk68v10_state::machine_start () { - LOG ((LLFORMAT " %s\n", m_maincpu->total_cycles(), FUNCNAME)); + LOG (("%" I64FMT "d %s\n", m_maincpu->total_cycles(), FUNCNAME)); /* Setup pointer to bootvector in ROM for bootvector handler bootvect_r */ m_sysrom = (UINT16*)(memregion ("maincpu")->base () + 0x0fc0000); @@ -265,7 +263,7 @@ void hk68v10_state::machine_start () */ void hk68v10_state::machine_reset () { - LOG ((LLFORMAT " %s\n", m_maincpu->total_cycles(), FUNCNAME)); + LOG (("%" I64FMT "d %s\n", m_maincpu->total_cycles(), FUNCNAME)); /* Reset pointer to bootvector in ROM for bootvector handler bootvect_r */ if (m_sysrom == &m_sysram[0]) /* Condition needed because memory map is not setup first time */ -- cgit v1.2.3-70-g09d2