summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/funworld.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/mame/drivers/funworld.c
parent1c837826c7ab6f7a84c5ca358aca9aff9cca2b62 (diff)
Made palette settings for screen explicit and mandatory for ind16 mode (nw)
Diffstat (limited to 'src/mame/drivers/funworld.c')
-rw-r--r--src/mame/drivers/funworld.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mame/drivers/funworld.c b/src/mame/drivers/funworld.c
index 9635ccfd4c8..8563170b2f1 100644
--- a/src/mame/drivers/funworld.c
+++ b/src/mame/drivers/funworld.c
@@ -2949,6 +2949,7 @@ static MACHINE_CONFIG_START( fw1stpal, funworld_state )
MCFG_SCREEN_SIZE((124+1)*4, (30+1)*8) /* Taken from MC6845 init, registers 00 & 04. Normally programmed with (value-1) */
MCFG_SCREEN_VISIBLE_AREA(0*4, 96*4-1, 0*8, 29*8-1) /* Taken from MC6845 init, registers 01 & 06 */
MCFG_SCREEN_UPDATE_DRIVER(funworld_state, screen_update_funworld)
+ MCFG_SCREEN_PALETTE("palette")
MCFG_GFXDECODE_ADD("gfxdecode", fw1stpal)