From c5ea7f4e42c87c2c42a7b111cd44b3fa2a10b93d Mon Sep 17 00:00:00 2001 From: Curt Coder Date: Mon, 10 Jun 2013 13:44:23 +0000 Subject: [PATCH] (MESS) wangpc: Use medium resolution video controller by default. [Curt Coder] --- src/mess/drivers/wangpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/drivers/wangpc.c b/src/mess/drivers/wangpc.c index 19920a7cef2..b2d3edce1cf 100644 --- a/src/mess/drivers/wangpc.c +++ b/src/mess/drivers/wangpc.c @@ -1225,7 +1225,7 @@ static MACHINE_CONFIG_START( wangpc, wangpc_state ) // bus MCFG_WANGPC_BUS_ADD(bus_intf) MCFG_WANGPC_BUS_SLOT_ADD("slot1", 1, wangpc_cards, NULL) - MCFG_WANGPC_BUS_SLOT_ADD("slot2", 2, wangpc_cards, "lvc") + MCFG_WANGPC_BUS_SLOT_ADD("slot2", 2, wangpc_cards, "mvc") MCFG_WANGPC_BUS_SLOT_ADD("slot3", 3, wangpc_cards, NULL) MCFG_WANGPC_BUS_SLOT_ADD("slot4", 4, wangpc_cards, NULL) MCFG_WANGPC_BUS_SLOT_ADD("slot5", 5, wangpc_cards, NULL)