diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/video/speedatk.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/speedatk.cpp b/src/mame/video/speedatk.cpp index 76426076aff..0779661d6b2 100644 --- a/src/mame/video/speedatk.cpp +++ b/src/mame/video/speedatk.cpp @@ -87,9 +87,9 @@ uint32_t speedatk_state::screen_update(screen_device &screen, bitmap_rgb32 &bitm { for(x=0;x<m_crtc_vreg[1];x++) { - tile = m_videoram[count] + ((m_colorram[count] & 0xe0) << 3); + tile = m_videoram[count] + ((m_colorram[count] & 0x60) << 3); color = m_colorram[count] & 0x1f; - region = (m_colorram[count] & 0x10) >> 4; + region = (m_colorram[count] & 0x80) >> 7; m_gfxdecode->gfx(region)->opaque(bitmap,cliprect,tile,color,m_flip_scr,m_flip_scr,x*8,y*8); |