fmtowns.cpp : Fix speaker output level (#3513)

* fmtowns.cpp : Fix speaker output level

fmtowns.cpp : Fix speaker output level because SPEAKER_SOUND has only 1 outputs

* fmtowns.cpp : Fix for current master
This commit is contained in:
cam900 2018-05-30 22:19:52 +09:00 committed by Vas Crabb
parent 8d9cf97339
commit 4bb2d209f4

View File

@ -2798,9 +2798,7 @@ MACHINE_CONFIG_START(towns_state::towns_base)
MCFG_DEVICE_ADD("cdda",CDDA)
MCFG_SOUND_ROUTE(0, "lspeaker", 1.00)
MCFG_SOUND_ROUTE(1, "rspeaker", 1.00)
MCFG_DEVICE_ADD("speaker", SPEAKER_SOUND,0)
MCFG_SOUND_ROUTE(0, "lspeaker", 1.00)
MCFG_SOUND_ROUTE(1, "rspeaker", 1.00)
SPEAKER_SOUND(config, "speaker").add_route(ALL_OUTPUTS, "lspeaker", 0.50).add_route(ALL_OUTPUTS, "rspeaker", 0.50);
MCFG_DEVICE_ADD("pit", PIT8253, 0)
MCFG_PIT8253_CLK0(307200)