diff options
author | 2011-09-22 13:22:56 +0000 | |
---|---|---|
committer | 2011-09-22 13:22:56 +0000 | |
commit | 37adcd713e480debea215cf189260726c042db55 (patch) | |
tree | bc56dcf04c6ae2e417077284bb5a919568f332c9 /src/emu | |
parent | 9bfa6c5bc2e36f4343378b0d7660b508999362b1 (diff) |
fix Linux/GCC 4.6 compile (nw)
Diffstat (limited to 'src/emu')
-rw-r--r-- | src/emu/video/h63484.c | 6 |
1 files 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]; |