(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 :-(
This commit is contained in:
Fabio Priuli 2014-03-31 08:45:31 +00:00
parent b297c61ebd
commit 7aabd6f8cd

View File

@ -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 )