make spu a bit louder here

This commit is contained in:
Michaël Banaan Ananas 2014-02-22 20:47:10 +00:00
parent 4688392509
commit af7dbf72dd
2 changed files with 19 additions and 3 deletions

View File

@ -692,9 +692,9 @@ static MACHINE_CONFIG_START( coh3002t, taitogn_state )
/* sound hardware */
MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")
MCFG_SPU_ADD( "spu", XTAL_67_7376MHz/2 )
MCFG_SOUND_ROUTE(0, "lspeaker", 0.35)
MCFG_SOUND_ROUTE(1, "rspeaker", 0.35)
MCFG_SPU_ADD("spu", XTAL_67_7376MHz/2)
MCFG_SOUND_ROUTE(0, "lspeaker", 0.45)
MCFG_SOUND_ROUTE(1, "rspeaker", 0.45)
MCFG_FRAGMENT_ADD( taito_zoom_sound )
MCFG_CPU_MODIFY("mn10200")

View File

@ -1207,6 +1207,8 @@ MACHINE_RESET_MEMBER(zn_state,coh1000tb)
}
static MACHINE_CONFIG_DERIVED(coh1000tb, zn1_1mb_vram)
/* basic machine hardware */
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_PROGRAM_MAP(coh1000tb_map)
@ -1215,10 +1217,18 @@ static MACHINE_CONFIG_DERIVED(coh1000tb, zn1_1mb_vram)
MCFG_MB3773_ADD("mb3773")
/* sound hardware */
MCFG_SOUND_MODIFY("spu")
MCFG_SOUND_ROUTES_RESET()
MCFG_SOUND_ROUTE(0, "lspeaker", 0.45)
MCFG_SOUND_ROUTE(1, "rspeaker", 0.45)
MCFG_FRAGMENT_ADD(taito_zoom_sound)
MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED(coh1002tb, zn1_2mb_vram)
/* basic machine hardware */
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_PROGRAM_MAP(coh1000tb_map)
@ -1227,6 +1237,12 @@ static MACHINE_CONFIG_DERIVED(coh1002tb, zn1_2mb_vram)
MCFG_MB3773_ADD("mb3773")
/* sound hardware */
MCFG_SOUND_MODIFY("spu")
MCFG_SOUND_ROUTES_RESET()
MCFG_SOUND_ROUTE(0, "lspeaker", 0.45)
MCFG_SOUND_ROUTE(1, "rspeaker", 0.45)
MCFG_FRAGMENT_ADD(taito_zoom_sound)
MACHINE_CONFIG_END