summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/cdp1862.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video/cdp1862.c')
-rw-r--r--src/emu/video/cdp1862.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video/cdp1862.c b/src/emu/video/cdp1862.c
index ba413991dfb..11ec5982edf 100644
--- a/src/emu/video/cdp1862.c
+++ b/src/emu/video/cdp1862.c
@@ -64,7 +64,7 @@ inline void cdp1862_device::initialize_palette()
g = (i & 1) ? luma : 0;
b = (i & 2) ? luma : 0;
- m_palette[i] = MAKE_RGB(r, g, b);
+ m_palette[i] = rgb_t(r, g, b);
}
}