summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/cdp1869.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/cdp1869.c')
-rw-r--r--src/emu/sound/cdp1869.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/cdp1869.c b/src/emu/sound/cdp1869.c
index d5aa7bfb55a..8ef42e7d5b9 100644
--- a/src/emu/sound/cdp1869.c
+++ b/src/emu/sound/cdp1869.c
@@ -234,7 +234,7 @@ inline rgb_t cdp1869_device::get_rgb(int i, int c, int l)
g = (c & 1) ? luma : 0;
b = (c & 2) ? luma : 0;
- return MAKE_RGB(r, g, b);
+ return rgb_t(r, g, b);
}