From ebef239e0c1547c467e26e5adbaac258af642244 Mon Sep 17 00:00:00 2001 From: Nathan Woods Date: Mon, 2 Feb 2009 03:04:10 +0000 Subject: [PATCH] MSVC fix [Atari Ace] --- src/emu/sound/sid6581.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emu/sound/sid6581.c b/src/emu/sound/sid6581.c index e80cd187e2e..e86f9e71a4d 100644 --- a/src/emu/sound/sid6581.c +++ b/src/emu/sound/sid6581.c @@ -57,14 +57,14 @@ static SND_RESET( sid ) static SND_START( sid6581 ) { - return sid_start(device, clock, MOS6581); + sid_start(device, clock, MOS6581); } static SND_START( sid8580 ) { - return sid_start(device, clock, MOS8580); + sid_start(device, clock, MOS8580); }