summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/buster.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/mame/drivers/buster.c
parent9e73dd723ba03812672d90678218457982c8a9c0 (diff)
Removed palette_device parameter from gfx draw methods. All draw methods now use m_palette (nw)
Diffstat (limited to 'src/mame/drivers/buster.c')
-rw-r--r--src/mame/drivers/buster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/buster.c b/src/mame/drivers/buster.c
index 939860962ad..0a604631588 100644
--- a/src/mame/drivers/buster.c
+++ b/src/mame/drivers/buster.c
@@ -51,7 +51,7 @@ UINT32 buster_state::screen_update_buster(screen_device &screen, bitmap_ind16 &b
{
int tile = (m_vram[count+1])|(m_vram[count]<<8);
//int colour = tile>>12;
- gfx->opaque(m_palette,bitmap,cliprect,tile,0,0,0,x*8,y*4);
+ gfx->opaque(bitmap,cliprect,tile,0,0,0,x*8,y*4);
count+=2;
}