summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/spectrum.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/spectrum.c')
-rw-r--r--src/mess/video/spectrum.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/mess/video/spectrum.c b/src/mess/video/spectrum.c
index 8524e3a2c7c..6a95e2b7acb 100644
--- a/src/mess/video/spectrum.c
+++ b/src/mess/video/spectrum.c
@@ -155,22 +155,22 @@ UINT32 spectrum_state::screen_update_spectrum(screen_device &screen, bitmap_ind1
static const rgb_t spectrum_palette[16] = {
- MAKE_RGB(0x00, 0x00, 0x00),
- MAKE_RGB(0x00, 0x00, 0xbf),
- MAKE_RGB(0xbf, 0x00, 0x00),
- MAKE_RGB(0xbf, 0x00, 0xbf),
- MAKE_RGB(0x00, 0xbf, 0x00),
- MAKE_RGB(0x00, 0xbf, 0xbf),
- MAKE_RGB(0xbf, 0xbf, 0x00),
- MAKE_RGB(0xbf, 0xbf, 0xbf),
- MAKE_RGB(0x00, 0x00, 0x00),
- MAKE_RGB(0x00, 0x00, 0xff),
- MAKE_RGB(0xff, 0x00, 0x00),
- MAKE_RGB(0xff, 0x00, 0xff),
- MAKE_RGB(0x00, 0xff, 0x00),
- MAKE_RGB(0x00, 0xff, 0xff),
- MAKE_RGB(0xff, 0xff, 0x00),
- MAKE_RGB(0xff, 0xff, 0xff)
+ rgb_t(0x00, 0x00, 0x00),
+ rgb_t(0x00, 0x00, 0xbf),
+ rgb_t(0xbf, 0x00, 0x00),
+ rgb_t(0xbf, 0x00, 0xbf),
+ rgb_t(0x00, 0xbf, 0x00),
+ rgb_t(0x00, 0xbf, 0xbf),
+ rgb_t(0xbf, 0xbf, 0x00),
+ rgb_t(0xbf, 0xbf, 0xbf),
+ rgb_t(0x00, 0x00, 0x00),
+ rgb_t(0x00, 0x00, 0xff),
+ rgb_t(0xff, 0x00, 0x00),
+ rgb_t(0xff, 0x00, 0xff),
+ rgb_t(0x00, 0xff, 0x00),
+ rgb_t(0x00, 0xff, 0xff),
+ rgb_t(0xff, 0xff, 0x00),
+ rgb_t(0xff, 0xff, 0xff)
};
/* Initialise the palette */
PALETTE_INIT_MEMBER(spectrum_state,spectrum)