Skip to content

Commit

Permalink
Fix MT #1044
Browse files Browse the repository at this point in the history
  • Loading branch information
angelosa committed Sep 14, 2016
1 parent c94cd9f commit b12d949
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/mame/drivers/metro.cpp
Expand Up @@ -4038,12 +4038,12 @@ static MACHINE_CONFIG_START( gakusai, metro_state )
MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")

MCFG_OKIM6295_ADD("oki", 2112000, OKIM6295_PIN7_HIGH) // clock frequency & pin 7 not verified
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.50)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.50)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.25)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.25)

MCFG_SOUND_ADD("ymsnd", YM2413, XTAL_3_579545MHz)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.90)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.90)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 2.00)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 2.00)
MACHINE_CONFIG_END


Expand Down Expand Up @@ -4077,12 +4077,12 @@ static MACHINE_CONFIG_START( gakusai2, metro_state )
MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")

MCFG_OKIM6295_ADD("oki", 2112000, OKIM6295_PIN7_HIGH) // clock frequency & pin 7 not verified
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.50)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.50)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.25)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.25)

MCFG_SOUND_ADD("ymsnd", YM2413, XTAL_3_579545MHz)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.90)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.90)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 2.00)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 2.00)
MACHINE_CONFIG_END


Expand Down

0 comments on commit b12d949

Please sign in to comment.