summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ncd68k.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ncd68k.cpp')
-rw-r--r--src/mame/drivers/ncd68k.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/ncd68k.cpp b/src/mame/drivers/ncd68k.cpp
index e1a4e99e3fb..7e458e3e566 100644
--- a/src/mame/drivers/ncd68k.cpp
+++ b/src/mame/drivers/ncd68k.cpp
@@ -231,7 +231,7 @@ u32 ncd17c_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, rec
for (unsigned x = 0; x < 1024; x++)
{
u8 const pixels = m_vram->read((y * 1024) + BYTE4_XOR_BE(x));
- *scanline++ = m_ramdac->palette_lookup(pixels);
+ *scanline++ = m_ramdac->lookup(pixels);
}
}