summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hitpoker.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hitpoker.c')
-rw-r--r--src/mame/drivers/hitpoker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/hitpoker.c b/src/mame/drivers/hitpoker.c
index 9aadb4c5555..9aedc2bbae1 100644
--- a/src/mame/drivers/hitpoker.c
+++ b/src/mame/drivers/hitpoker.c
@@ -111,7 +111,7 @@ UINT32 hitpoker_state::screen_update_hitpoker(screen_device &screen, bitmap_ind1
gfx_bpp = (m_colorram[count] & 0x80)>>7; //flag between 4 and 8 bpp
color = gfx_bpp ? ((m_colorram[count] & 0x70)>>4) : (m_colorram[count] & 0xf);
- drawgfx_opaque(bitmap,cliprect,screen.machine().gfx[gfx_bpp],tile,color,0,0,x*8,y*8);
+ drawgfx_opaque(bitmap,cliprect,machine().gfx[gfx_bpp],tile,color,0,0,x*8,y*8);
count+=2;
}