From 7d1b771c6fe49e670ba77349a5bedb62cfa348ec Mon Sep 17 00:00:00 2001 From: smf- Date: Mon, 22 May 2017 14:10:13 +0100 Subject: Fix for MSVC (nw) --- src/mame/drivers/m14.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/m14.cpp b/src/mame/drivers/m14.cpp index e7ef6f520a0..bc440660e60 100644 --- a/src/mame/drivers/m14.cpp +++ b/src/mame/drivers/m14.cpp @@ -306,8 +306,8 @@ static INPUT_PORTS_START( m14 ) PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_NAME("P1 Fire / Discard") PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_NAME("P1 Ron") PORT_DIPNAME( 0x04, 0x04, DEF_STR( Coinage ) ) - PORT_DIPSETTING( 0x04, "Coin A 5\u30de\u30a4 Coin B 1\u30de\u30a4" ) - PORT_DIPSETTING( 0x00, "Coin A & B 1\u30de\u30a4" ) + PORT_DIPSETTING( 0x04, u8"Coin A 5\u30de\u30a4 Coin B 1\u30de\u30a4" ) + PORT_DIPSETTING( 0x00, u8"Coin A & B 1\u30de\u30a4" ) PORT_DIPNAME( 0x08, 0x08, DEF_STR( Unknown ) ) PORT_DIPSETTING( 0x08, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) -- cgit v1.2.3