From b985e88b5034bb9eeb0aa13c17bda8f9785996f0 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Fri, 25 Feb 2011 09:27:51 +0000 Subject: [PATCH] Fix regression for SMS based sets in megatech.c (no whatsnew) --- src/mame/drivers/megatech.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mame/drivers/megatech.c b/src/mame/drivers/megatech.c index 58e62a05398..41ec8e39f0c 100644 --- a/src/mame/drivers/megatech.c +++ b/src/mame/drivers/megatech.c @@ -505,6 +505,10 @@ static MACHINE_CONFIG_START( megatech, mtech_state ) MCFG_SCREEN_VISIBLE_AREA(0, 256-1, 0, 224-1) MCFG_SCREEN_UPDATE(mtnew) MCFG_SCREEN_EOF(mtnew) + + MCFG_SCREEN_MODIFY("megadriv") + MCFG_SCREEN_UPDATE(mtnew) + MCFG_SCREEN_EOF(mtnew) /* sound hardware */ MCFG_SOUND_ADD("sn2", SN76496, MASTER_CLOCK/15)