From 294999a885df25abe79b64d0c840f2c59df9701c Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Thu, 2 Feb 2012 04:04:50 +0000 Subject: [PATCH] [MT #4654] Fix master SCSP detection [R. Belmont] --- src/emu/sound/scsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/sound/scsp.c b/src/emu/sound/scsp.c index bed88653471..f575c258be9 100644 --- a/src/emu/sound/scsp.c +++ b/src/emu/sound/scsp.c @@ -535,7 +535,7 @@ static void SCSP_Init(device_t *device, scsp_state *scsp, const scsp_interface * scsp->MidiOutR=scsp->MidiOutW=0; // get SCSP RAM - if (strcmp(device->tag(), "scsp") == 0 || strcmp(device->tag(), "scsp1") == 0) + if (strcmp(device->tag(), ":scsp") == 0 || strcmp(device->tag(), ":scsp1") == 0) { scsp->Master=1; }