summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/pacman.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/pacman.c')
-rw-r--r--src/mame/video/pacman.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/pacman.c b/src/mame/video/pacman.c
index 76597b9f204..5adb92dbcd8 100644
--- a/src/mame/video/pacman.c
+++ b/src/mame/video/pacman.c
@@ -100,7 +100,7 @@ PALETTE_INIT_MEMBER(pacman_state,pacman)
bit1 = (color_prom[i] >> 7) & 0x01;
b = combine_2_weights(bweights, bit0, bit1);
- colortable_palette_set_color(machine().colortable, i, MAKE_RGB(r, g, b));
+ colortable_palette_set_color(machine().colortable, i, rgb_t(r, g, b));
}
/* color_prom now points to the beginning of the lookup table */