summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/nmk16.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/nmk16.c')
-rw-r--r--src/mame/video/nmk16.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/nmk16.c b/src/mame/video/nmk16.c
index 49bc22c79f1..777e9d8d909 100644
--- a/src/mame/video/nmk16.c
+++ b/src/mame/video/nmk16.c
@@ -419,7 +419,7 @@ inline void nmk16_state::nmk16_draw_sprite(bitmap_ind16 &bitmap, const rectangle
xx = w;
do
{
- m_gfxdecode->gfx(2)->transpen(bitmap,cliprect,
+ m_gfxdecode->gfx(2)->transpen(m_palette,bitmap,cliprect,
code,
color,
flip_screen(), flip_screen(),
@@ -467,7 +467,7 @@ inline void nmk16_state::nmk16_draw_sprite_flipsupported(bitmap_ind16 &bitmap, c
xx = w;
do
{
- m_gfxdecode->gfx(2)->transpen(bitmap,cliprect,
+ m_gfxdecode->gfx(2)->transpen(m_palette,bitmap,cliprect,
code,
color,
flipx, flipy,
@@ -596,7 +596,7 @@ int nmk16_state::nmk16_bioshipbg_sprflip_tx_update(screen_device &screen, bitmap
int numtile = data&0xfff;
int color = (data&0xf000)>>12;
- m_gfxdecode->gfx(3)->opaque(*m_background_bitmap,m_background_bitmap->cliprect(),
+ m_gfxdecode->gfx(3)->opaque(m_palette,*m_background_bitmap,m_background_bitmap->cliprect(),
numtile,
color,
0,0, /* no flip */
@@ -605,7 +605,7 @@ int nmk16_state::nmk16_bioshipbg_sprflip_tx_update(screen_device &screen, bitmap
data = tilerom[offs+0x1000+bank];
numtile = data&0xfff;
color = (data&0xf000)>>12;
- m_gfxdecode->gfx(3)->opaque(*m_background_bitmap,m_background_bitmap->cliprect(),
+ m_gfxdecode->gfx(3)->opaque(m_palette,*m_background_bitmap,m_background_bitmap->cliprect(),
numtile,
color,
0,0, /* no flip */