summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/photon2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/photon2.c')
-rw-r--r--src/mame/drivers/photon2.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/mame/drivers/photon2.c b/src/mame/drivers/photon2.c
index fb053c2fd45..2ccc9dc148c 100644
--- a/src/mame/drivers/photon2.c
+++ b/src/mame/drivers/photon2.c
@@ -70,22 +70,22 @@ public:
#define SPEC_CYCLES_PER_LINE 224 /* Number of cycles to display a single line */
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 */