From 124d85220594c7ab18e89531697b84cb9c1011f9 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Wed, 1 Oct 2014 02:01:29 +0000 Subject: [PATCH] Fix compile (unused variable issue) (nw) --- src/emu/machine/hdc9234.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/machine/hdc9234.c b/src/emu/machine/hdc9234.c index 59684470338..5fc19a52404 100644 --- a/src/emu/machine/hdc9234.c +++ b/src/emu/machine/hdc9234.c @@ -488,7 +488,7 @@ int hdc9234_device::current_head() int hdc9234_device::current_cylinder() { - int abc = 0; +// int abc = 0; return (m_register_r[CURRENT_CYLINDER] & 0xff) | (m_register_r[CURRENT_HEAD] & 0x70); }