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/rmt32.c | |
parent | 1c837826c7ab6f7a84c5ca358aca9aff9cca2b62 (diff) |
Made palette settings for screen explicit and mandatory for ind16 mode (nw)
Diffstat (limited to 'src/mess/drivers/rmt32.c')
-rw-r--r-- | src/mess/drivers/rmt32.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mess/drivers/rmt32.c b/src/mess/drivers/rmt32.c index dab0fa2d545..531a13e06ac 100644 --- a/src/mess/drivers/rmt32.c +++ b/src/mess/drivers/rmt32.c @@ -359,6 +359,8 @@ static MACHINE_CONFIG_START( mt32, mt32_state ) // MCFG_SCREEN_SIZE(20*6-1, 9) MCFG_SCREEN_SIZE(20*6-1, (20*6-1)*3/4) MCFG_SCREEN_VISIBLE_AREA(0, 20*6-2, 0, (20*6-1)*3/4-1) + MCFG_SCREEN_PALETTE("palette") + MCFG_PALETTE_ADD("palette", 2) MCFG_PALETTE_INIT_OWNER(mt32_state, mt32) |