From 12e044401086fa7afd25f112887b9439122689cf Mon Sep 17 00:00:00 2001 From: Robbbert Date: Tue, 23 Oct 2012 12:10:28 +0000 Subject: [PATCH] Fixed interrupt rate, Hot Tip and Lucky 7 startup tunes play now. --- src/mame/drivers/s3.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/mame/drivers/s3.c b/src/mame/drivers/s3.c index afe50d7bc1d..0968de55bff 100644 --- a/src/mame/drivers/s3.c +++ b/src/mame/drivers/s3.c @@ -12,13 +12,11 @@ When first used, the nvram gets initialised but is otherwise unusable. A reboot will get it going. - By pressing 9, you can select a different set of sounds. This is switch SW2 on + By pressing 4, you can select a different set of sounds. This is switch SW2 on the real board. ToDo: -- Diagnostic controls - Add 10k chime when added to samples. -- Hot Tip and Lucky 7 should play a tune when starting a game. ************************************************************************************/ @@ -509,7 +507,7 @@ static MACHINE_CONFIG_START( s3, s3_state ) /* basic machine hardware */ MCFG_CPU_ADD("maincpu", M6800, 3580000) MCFG_CPU_PROGRAM_MAP(s3_main_map) - MCFG_TIMER_DRIVER_ADD_PERIODIC("irq", s3_state, irq, attotime::from_hz(1000)) + MCFG_TIMER_DRIVER_ADD_PERIODIC("irq", s3_state, irq, attotime::from_hz(250)) MCFG_MACHINE_RESET_OVERRIDE(s3_state, s3) /* Video */