mirror of
https://github.com/holub/mame
synced 2025-05-18 19:49:35 +03:00
fix Linux/GCC 4.6 compile (nw)
This commit is contained in:
parent
9bfa6c5bc2
commit
37adcd713e
@ -735,15 +735,15 @@ void h63484_device::command_cpy_exec()
|
|||||||
void h63484_device::command_rct_exec()
|
void h63484_device::command_rct_exec()
|
||||||
{
|
{
|
||||||
INT16 dX, dY;
|
INT16 dX, dY;
|
||||||
UINT8 area,col,opm;
|
UINT8 col; //, area, opm;
|
||||||
UINT32 offset;
|
UINT32 offset;
|
||||||
int inc_x,inc_y;
|
int inc_x,inc_y;
|
||||||
int i;
|
int i;
|
||||||
UINT8 res,data_r;
|
UINT8 res,data_r;
|
||||||
|
|
||||||
area = (m_cr & 0xe0) >> 5;
|
// area = (m_cr & 0xe0) >> 5;
|
||||||
col = (m_cr & 0x18) >> 3;
|
col = (m_cr & 0x18) >> 3;
|
||||||
opm = (m_cr & 0x07);
|
// opm = (m_cr & 0x07);
|
||||||
dX = m_pr[0];
|
dX = m_pr[0];
|
||||||
dY = m_pr[1];
|
dY = m_pr[1];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user