Previous 199869 Revisions Next

r31331 Sunday 20th July, 2014 at 08:31:44 UTC by Sandro Ronco
(MESS) Fixed geniusiq.c regression. (nw)
[src/mess/drivers]geniusiq.c

trunk/src/mess/drivers/geniusiq.c
r31330r31331
418418
419419WRITE16_MEMBER(geniusiq_state::gfx_idx_w)
420420{
421   UINT16 *gfx = ((UINT16 *)(*memregion("maincpu"))) + ((m_gfx_base + data*32)>>1);
421   UINT16 *gfx = ((UINT16 *)(*memregion("maincpu"))) + ((m_gfx_base + (data & 0xff)*32)>>1);
422422
423423   // first 16 bits are used to define the character size
424424   UINT8 gfx_heigh = (gfx[0]>>0) & 0xff;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team