summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/replicator.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-03-14 14:39:34 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-03-14 14:39:34 +0000
commitb5a348c7c1a37b55dc9bb2c57da9120dcb29cd15 (patch)
tree8cbf4677543966e90688ac82c01da72f745aa14d /src/mess/drivers/replicator.c
parent1c837826c7ab6f7a84c5ca358aca9aff9cca2b62 (diff)
Made palette settings for screen explicit and mandatory for ind16 mode (nw)
Diffstat (limited to 'src/mess/drivers/replicator.c')
-rw-r--r--src/mess/drivers/replicator.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mess/drivers/replicator.c b/src/mess/drivers/replicator.c
index 9bac9135673..17ae620ee8f 100644
--- a/src/mess/drivers/replicator.c
+++ b/src/mess/drivers/replicator.c
@@ -666,6 +666,7 @@ static MACHINE_CONFIG_START( replicator, replicator_state )
MCFG_SCREEN_UPDATE_DEVICE("hd44780", hd44780_device, screen_update)
MCFG_SCREEN_SIZE(120, 18*2) //4x20 chars
MCFG_SCREEN_VISIBLE_AREA(0, 120-1, 0, 18*2-1)
+ MCFG_SCREEN_PALETTE("palette")
MCFG_PALETTE_ADD("palette", 2)
MCFG_PALETTE_INIT_OWNER(replicator_state, replicator)