From 37adcd713e480debea215cf189260726c042db55 Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Thu, 22 Sep 2011 13:22:56 +0000 Subject: [PATCH] fix Linux/GCC 4.6 compile (nw) --- src/emu/video/h63484.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emu/video/h63484.c b/src/emu/video/h63484.c index d31ced7ab89..c2240268d19 100644 --- a/src/emu/video/h63484.c +++ b/src/emu/video/h63484.c @@ -735,15 +735,15 @@ void h63484_device::command_cpy_exec() void h63484_device::command_rct_exec() { INT16 dX, dY; - UINT8 area,col,opm; + UINT8 col; //, area, opm; UINT32 offset; int inc_x,inc_y; int i; UINT8 res,data_r; - area = (m_cr & 0xe0) >> 5; +// area = (m_cr & 0xe0) >> 5; col = (m_cr & 0x18) >> 3; - opm = (m_cr & 0x07); +// opm = (m_cr & 0x07); dX = m_pr[0]; dY = m_pr[1];