summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/thomson.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/thomson.c')
-rw-r--r--src/mess/video/thomson.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/video/thomson.c b/src/mess/video/thomson.c
index 891d88476fd..a600b962059 100644
--- a/src/mess/video/thomson.c
+++ b/src/mess/video/thomson.c
@@ -1094,7 +1094,7 @@ PALETTE_INIT_MEMBER(thomson_state, thom)
UINT8 g = 255. * pow( ((i>> 4) & 15) / 15., gamma );
UINT8 b = 255. * pow( ((i >> 8) & 15) / 15., gamma );
/* UINT8 alpha = i & 0x1000 ? 0 : 255; TODO: transparency */
- palette_set_color_rgb(machine(), i, r, g, b );
+ palette.set_pen_color(i, r, g, b );
}
}