From a449c766a220e5edcfc5aeb03730813a929a7c8a Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Sun, 5 Jun 2011 22:35:20 +0000 Subject: Cleanups and version bump --- src/mame/drivers/segas32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mame/drivers/segas32.c') diff --git a/src/mame/drivers/segas32.c b/src/mame/drivers/segas32.c index a7e007744a8..ea4738d9b9f 100644 --- a/src/mame/drivers/segas32.c +++ b/src/mame/drivers/segas32.c @@ -642,7 +642,7 @@ static UINT16 common_io_chip_r(address_space *space, int which, offs_t offset, U static void common_io_chip_w(address_space *space, int which, offs_t offset, UINT16 data, UINT16 mem_mask) { segas32_state *state = space->machine().driver_data(); -// UINT8 old; +// UINT8 old; /* only LSB matters */ if (!ACCESSING_BITS_0_7) @@ -650,7 +650,7 @@ static void common_io_chip_w(address_space *space, int which, offs_t offset, UIN /* generic implementation */ offset &= 0x1f/2; -// old = state->m_misc_io_data[which][offset]; +// old = state->m_misc_io_data[which][offset]; state->m_misc_io_data[which][offset] = data; switch (offset) -- cgit v1.2.3