summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pc8001.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pc8001.cpp')
-rw-r--r--src/mame/drivers/pc8001.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/pc8001.cpp b/src/mame/drivers/pc8001.cpp
index 1394270f1af..b984d374d10 100644
--- a/src/mame/drivers/pc8001.cpp
+++ b/src/mame/drivers/pc8001.cpp
@@ -354,14 +354,14 @@ INPUT_PORTS_END
static const rgb_t PALETTE_PC8001[] =
{
- rgb_t::black,
+ rgb_t::black(),
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::white
+ rgb_t::white()
};
UPD3301_DRAW_CHARACTER_MEMBER( pc8001_state::pc8001_display_pixels )