Skip to content

Commit

Permalink
amstrad: fixed SSA-1 and DK'Tronics speech regressions (no whatsnew)
Browse files Browse the repository at this point in the history
git-svn-id: svn://messdev.no-ip.org/mess@15127 9849079f-6229-0410-a07f-84406ce305ba
  • Loading branch information
mahlemiut committed May 9, 2012
1 parent a1c919e commit 698709e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/mess/machine/cpc_ssa1.c
Expand Up @@ -87,14 +87,14 @@ WRITE_LINE_MEMBER(cpc_dkspeech_device::sby_cb)

static sp0256_interface sp0256_intf =
{
DEVCB_LINE_MEMBER(cpc_ssa1_device,lrq_cb),
DEVCB_LINE_MEMBER(cpc_ssa1_device,sby_cb)
DEVCB_DEVICE_LINE_MEMBER(DEVICE_SELF_OWNER,cpc_ssa1_device,lrq_cb),
DEVCB_DEVICE_LINE_MEMBER(DEVICE_SELF_OWNER,cpc_ssa1_device,sby_cb)
};

static sp0256_interface sp0256_dk_intf =
{
DEVCB_LINE_MEMBER(cpc_dkspeech_device,lrq_cb),
DEVCB_LINE_MEMBER(cpc_dkspeech_device,sby_cb)
DEVCB_DEVICE_LINE_MEMBER(DEVICE_SELF_OWNER,cpc_dkspeech_device,lrq_cb),
DEVCB_DEVICE_LINE_MEMBER(DEVICE_SELF_OWNER,cpc_dkspeech_device,sby_cb)
};

//-------------------------------------------------
Expand Down

0 comments on commit 698709e

Please sign in to comment.