Fixed validation error with teletypewriter.

This commit is contained in:
Robbbert 2016-07-29 14:15:14 +10:00
parent 77db219891
commit 351e33cdbf
2 changed files with 5 additions and 1 deletions

View File

@ -337,7 +337,7 @@ static MACHINE_CONFIG_FRAGMENT( generic_terminal )
MCFG_SPEAKER_STANDARD_MONO("bell")
MCFG_SOUND_ADD("beeper", BEEP, 2'000)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "bell", 1.0)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "bell", 0.50)
MACHINE_CONFIG_END
machine_config_constructor generic_terminal_device::device_mconfig_additions() const

View File

@ -217,6 +217,10 @@ MACHINE_CONFIG_FRAGMENT( generic_teleprinter )
MCFG_SCREEN_UPDATE_DEVICE(DEVICE_SELF, teleprinter_device, tp_update)
MCFG_DEVICE_ADD(KEYBOARD_TAG, GENERIC_KEYBOARD, 0)
MCFG_GENERIC_KEYBOARD_CB(WRITE8(generic_terminal_device, kbd_put))
MCFG_SPEAKER_STANDARD_MONO("bell")
MCFG_SOUND_ADD("beeper", BEEP, 2'000)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "bell", 0.50)
MACHINE_CONFIG_END
machine_config_constructor teleprinter_device::device_mconfig_additions() const