diff options
author | 2014-03-14 14:39:34 +0000 | |
---|---|---|
committer | 2014-03-14 14:39:34 +0000 | |
commit | b5a348c7c1a37b55dc9bb2c57da9120dcb29cd15 (patch) | |
tree | 8cbf4677543966e90688ac82c01da72f745aa14d /src/mess/drivers/lviv.c | |
parent | 1c837826c7ab6f7a84c5ca358aca9aff9cca2b62 (diff) |
Made palette settings for screen explicit and mandatory for ind16 mode (nw)
Diffstat (limited to 'src/mess/drivers/lviv.c')
-rw-r--r-- | src/mess/drivers/lviv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mess/drivers/lviv.c b/src/mess/drivers/lviv.c index b88fc17a612..29a1ec5f2a8 100644 --- a/src/mess/drivers/lviv.c +++ b/src/mess/drivers/lviv.c @@ -446,6 +446,7 @@ static MACHINE_CONFIG_START( lviv, lviv_state ) MCFG_SCREEN_SIZE(256, 256) MCFG_SCREEN_VISIBLE_AREA(0, 256-1, 0, 256-1) MCFG_SCREEN_UPDATE_DRIVER(lviv_state, screen_update_lviv) + MCFG_SCREEN_PALETTE("palette") MCFG_PALETTE_ADD("palette", sizeof (lviv_palette) / 3) MCFG_PALETTE_INIT_OWNER(lviv_state, lviv) |