diff options
author | 2014-03-31 08:45:31 +0000 | |
---|---|---|
committer | 2014-03-31 08:45:31 +0000 | |
commit | 7aabd6f8cdb4cfbae69854dca16a6ac8f24c77c5 (patch) | |
tree | 2b6ce45f109c30ad2f2af5c24700281b428d04a6 /src/mess/machine/pce_cd.c | |
parent | b297c61ebd65a21cce3a18da590ec2cc80224420 (diff) |
(MESS) pce_cd: fixed MSM volume. [Osso]
This fixes MT05249, with huge thanks to Ivan who spotted the problem.
When converting the CD component to device I took the MSM lines from
SGX which had zero'd volumes, instead of taking them from PCE which
had the correct settings... it's better I don't count the time I spent checking
the device code over and over in search of handler mistakes :-(
Diffstat (limited to 'src/mess/machine/pce_cd.c')
-rw-r--r-- | src/mess/machine/pce_cd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/pce_cd.c b/src/mess/machine/pce_cd.c index 7419cf195a6..e20c6fa1c38 100644 --- a/src/mess/machine/pce_cd.c +++ b/src/mess/machine/pce_cd.c @@ -236,8 +236,8 @@ static MACHINE_CONFIG_FRAGMENT( pce_cd ) MCFG_SOUND_ADD( "msm5205", MSM5205, PCE_CD_CLOCK / 6 ) MCFG_MSM5205_VCLK_CB(DEVWRITELINE(DEVICE_SELF_OWNER, pce_cd_device, msm5205_int)) /* interrupt function */ MCFG_MSM5205_PRESCALER_SELECTOR(MSM5205_S48_4B) /* 1/48 prescaler, 4bit data */ - MCFG_SOUND_ROUTE( ALL_OUTPUTS, "^:lspeaker", 0.00 ) - MCFG_SOUND_ROUTE( ALL_OUTPUTS, "^:rspeaker", 0.00 ) + MCFG_SOUND_ROUTE( ALL_OUTPUTS, "^:lspeaker", 0.50 ) + MCFG_SOUND_ROUTE( ALL_OUTPUTS, "^:rspeaker", 0.50 ) MCFG_SOUND_ADD( "cdda", CDDA, 0 ) MCFG_SOUND_ROUTE( 0, "^:lspeaker", 1.00 ) |