summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/speedatk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/speedatk.c')
-rw-r--r--src/mame/video/speedatk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/speedatk.c b/src/mame/video/speedatk.c
index af7b4ee1054..e9c14efec05 100644
--- a/src/mame/video/speedatk.c
+++ b/src/mame/video/speedatk.c
@@ -106,7 +106,7 @@ UINT32 speedatk_state::screen_update_speedatk(screen_device &screen, bitmap_ind1
color = m_colorram[count] & 0x1f;
region = (m_colorram[count] & 0x10) >> 4;
- drawgfx_opaque(bitmap,cliprect,screen.machine().gfx[region],tile,color,m_flip_scr,m_flip_scr,x*8,y*8);
+ drawgfx_opaque(bitmap,cliprect,machine().gfx[region],tile,color,m_flip_scr,m_flip_scr,x*8,y*8);
count = (m_flip_scr) ? count-1 : count+1;
count&=0x3ff;