summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/mos6566.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/mos6566.c')
-rw-r--r--src/mess/video/mos6566.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/mess/video/mos6566.c b/src/mess/video/mos6566.c
index 6ee73e4774c..8fae5339f33 100644
--- a/src/mess/video/mos6566.c
+++ b/src/mess/video/mos6566.c
@@ -100,22 +100,22 @@ static int UNUSED_BITS[0x40] =
// VICE palette
static const rgb_t PALETTE[] =
{
- MAKE_RGB(0x00, 0x00, 0x00),
- MAKE_RGB(0xfd, 0xfe, 0xfc),
- MAKE_RGB(0xbe, 0x1a, 0x24),
- MAKE_RGB(0x30, 0xe6, 0xc6),
- MAKE_RGB(0xb4, 0x1a, 0xe2),
- MAKE_RGB(0x1f, 0xd2, 0x1e),
- MAKE_RGB(0x21, 0x1b, 0xae),
- MAKE_RGB(0xdf, 0xf6, 0x0a),
- MAKE_RGB(0xb8, 0x41, 0x04),
- MAKE_RGB(0x6a, 0x33, 0x04),
- MAKE_RGB(0xfe, 0x4a, 0x57),
- MAKE_RGB(0x42, 0x45, 0x40),
- MAKE_RGB(0x70, 0x74, 0x6f),
- MAKE_RGB(0x59, 0xfe, 0x59),
- MAKE_RGB(0x5f, 0x53, 0xfe),
- MAKE_RGB(0xa4, 0xa7, 0xa2)
+ rgb_t(0x00, 0x00, 0x00),
+ rgb_t(0xfd, 0xfe, 0xfc),
+ rgb_t(0xbe, 0x1a, 0x24),
+ rgb_t(0x30, 0xe6, 0xc6),
+ rgb_t(0xb4, 0x1a, 0xe2),
+ rgb_t(0x1f, 0xd2, 0x1e),
+ rgb_t(0x21, 0x1b, 0xae),
+ rgb_t(0xdf, 0xf6, 0x0a),
+ rgb_t(0xb8, 0x41, 0x04),
+ rgb_t(0x6a, 0x33, 0x04),
+ rgb_t(0xfe, 0x4a, 0x57),
+ rgb_t(0x42, 0x45, 0x40),
+ rgb_t(0x70, 0x74, 0x6f),
+ rgb_t(0x59, 0xfe, 0x59),
+ rgb_t(0x5f, 0x53, 0xfe),
+ rgb_t(0xa4, 0xa7, 0xa2)
};