From 79cfcf76dc89c6d4068d806f5c9aa41f487b6777 Mon Sep 17 00:00:00 2001 From: Michael Zapf Date: Mon, 20 Apr 2015 16:02:37 +0200 Subject: [PATCH] hdc9234: Make CLANG happier. (nw) --- src/emu/machine/hdc9234.c | 4 ++-- src/emu/machine/hdc9234.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emu/machine/hdc9234.c b/src/emu/machine/hdc9234.c index 20316fa0a8b..be924040fde 100644 --- a/src/emu/machine/hdc9234.c +++ b/src/emu/machine/hdc9234.c @@ -2637,9 +2637,9 @@ void hdc9234_device::live_run_until(attotime limit) */ void hdc9234_device::live_run_hd_until(attotime limit) { - int slot = 0; +// int slot = 0; logerror("%s: live_run_hd\n", tag()); - + if (m_live_state.state == IDLE || m_live_state.next_state != -1) return; diff --git a/src/emu/machine/hdc9234.h b/src/emu/machine/hdc9234.h index d140ae62e46..e4efd35ad3e 100644 --- a/src/emu/machine/hdc9234.h +++ b/src/emu/machine/hdc9234.h @@ -168,7 +168,7 @@ private: // Timers to delay execution/completion of commands */ emu_timer *m_timer; emu_timer *m_cmd_timer; - emu_timer *m_live_timer; + // emu_timer *m_live_timer; // Timer callback void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);