summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/seibucop/seibucop_dma.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/seibucop/seibucop_dma.hxx')
-rw-r--r--src/mame/machine/seibucop/seibucop_dma.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/machine/seibucop/seibucop_dma.hxx b/src/mame/machine/seibucop/seibucop_dma.hxx
index 4b43b3e4732..b4bdfb160e7 100644
--- a/src/mame/machine/seibucop/seibucop_dma.hxx
+++ b/src/mame/machine/seibucop/seibucop_dma.hxx
@@ -22,7 +22,8 @@ void raiden2cop_device::dma_palette_buffer()
{
uint16_t palval = m_host_space->read_word(src);
src += 2;
- m_palette->set_pen_color(i, pal5bit(palval >> 0), pal5bit(palval >> 5), pal5bit(palval >> 10));
+ m_paletteramout_cb(i, palval, 0xffff);
+ //m_palette->set_pen_color(i, pal5bit(palval >> 0), pal5bit(palval >> 5), pal5bit(palval >> 10));
}
}