summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/ax20.c
diff options
context:
space:
mode:
author Alex W. Jackson <alex.w.jackson@gmail.com>2014-03-19 11:03:38 +0000
committer Alex W. Jackson <alex.w.jackson@gmail.com>2014-03-19 11:03:38 +0000
commitf27a84da26c7dc7fb06de8306c7b235acaa647fd (patch)
tree50b71fc30250dd0431f1b1ad4f0bb155967f1f96 /src/mess/drivers/ax20.c
parent9e73dd723ba03812672d90678218457982c8a9c0 (diff)
Removed palette_device parameter from gfx draw methods. All draw methods now use m_palette (nw)
Diffstat (limited to 'src/mess/drivers/ax20.c')
-rw-r--r--src/mess/drivers/ax20.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/ax20.c b/src/mess/drivers/ax20.c
index 8c250cd5400..5928552f533 100644
--- a/src/mess/drivers/ax20.c
+++ b/src/mess/drivers/ax20.c
@@ -50,7 +50,7 @@ UINT32 ax20_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, co
{
UINT16 tile = m_p_vram[24 + y * 128 + x ] & 0x7f;
- m_gfxdecode->gfx(0)->opaque(m_palette,bitmap,cliprect, tile, 0, 0, 0, x*8, y*12);
+ m_gfxdecode->gfx(0)->opaque(bitmap,cliprect, tile, 0, 0, 0, x*8, y*12);
}
}