summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/hk68v10.c
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2015-09-28 15:07:34 -0400
committer arbee <rb6502@users.noreply.github.com>2015-09-28 15:07:34 -0400
commitb44629ad738cfda877d1835618ad0734fe09f75b (patch)
tree5e5ba028544b3d209c013674f87c46d9861be68e /src/mess/drivers/hk68v10.c
parentb4f2cc1f4b92985a3489b4a3f048acb591b0b9ec (diff)
Same (nw)
Diffstat (limited to '')
-rw-r--r--src/mess/drivers/hk68v10.c6
1 files changed, 2 insertions, 4 deletions
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 */