summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/tim100.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/tim100.c')
-rw-r--r--src/mess/drivers/tim100.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/drivers/tim100.c b/src/mess/drivers/tim100.c
index d100ae55215..1a535c873b5 100644
--- a/src/mess/drivers/tim100.c
+++ b/src/mess/drivers/tim100.c
@@ -49,9 +49,9 @@ static INPUT_PORTS_START( tim100 )
INPUT_PORTS_END
static const rgb_t tim100_palette[3] = {
- MAKE_RGB(0x00, 0x00, 0x00), // black
- MAKE_RGB(0xa0, 0xa0, 0xa0), // white
- MAKE_RGB(0xff, 0xff, 0xff) // highlight
+ rgb_t(0x00, 0x00, 0x00), // black
+ rgb_t(0xa0, 0xa0, 0xa0), // white
+ rgb_t(0xff, 0xff, 0xff) // highlight
};
void tim100_state::machine_reset()