summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/vindictr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/vindictr.c')
-rw-r--r--src/mame/video/vindictr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/vindictr.c b/src/mame/video/vindictr.c
index 1672a18eefc..f1f816eb6e4 100644
--- a/src/mame/video/vindictr.c
+++ b/src/mame/video/vindictr.c
@@ -111,7 +111,7 @@ WRITE16_MEMBER( vindictr_state::vindictr_paletteram_w )
int g = ((data >> 4) & 15) * i;
int b = ((data >> 0) & 15) * i;
- palette_set_color(machine(),offset + c*2048,rgb_t(r,g,b));
+ m_palette->set_pen_color(offset + c*2048,rgb_t(r,g,b));
}
}