summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-05-05 06:54:37 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-05-05 06:54:37 +0000
commitad5e3bb6815f09b40400743a945c693b3ae16216 (patch)
treea9308b6a81658d6d5e0efcd1eb1998cbd80c9a33
parent1a1ab7bd6bbd21c7a826e88708721e920726f7f1 (diff)
01743: anteater: Music is really loud and clips
-rw-r--r--src/mame/drivers/galaxian.c13
-rw-r--r--src/mame/drivers/galdrvr.c2
2 files changed, 12 insertions, 3 deletions
diff --git a/src/mame/drivers/galaxian.c b/src/mame/drivers/galaxian.c
index 6ad9cf92f99..b19e5f16be0 100644
--- a/src/mame/drivers/galaxian.c
+++ b/src/mame/drivers/galaxian.c
@@ -1741,7 +1741,7 @@ static MACHINE_DRIVER_START( konami_sound_1x_ay8910 )
MDRV_SOUND_ADD_TAG("konami", DISCRETE, 0)
MDRV_SOUND_CONFIG_DISCRETE(konami_sound)
- MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
+ MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.75)
MACHINE_DRIVER_END
@@ -1767,7 +1767,7 @@ static MACHINE_DRIVER_START( konami_sound_2x_ay8910 )
MDRV_SOUND_ADD_TAG("konami", DISCRETE, 0)
MDRV_SOUND_CONFIG_DISCRETE(konami_sound)
- MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
+ MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.2)
MACHINE_DRIVER_END
@@ -2066,6 +2066,15 @@ static MACHINE_DRIVER_START( scobra )
MACHINE_DRIVER_END
+static MACHINE_DRIVER_START( anteater )
+ MDRV_IMPORT_FROM(scobra)
+
+ /* quiet down the sounds */
+ MDRV_SOUND_MODIFY("konami")
+ MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.1)
+MACHINE_DRIVER_END
+
+
/*************************************
*
diff --git a/src/mame/drivers/galdrvr.c b/src/mame/drivers/galdrvr.c
index d2f4d910ba0..5c8d9a482de 100644
--- a/src/mame/drivers/galdrvr.c
+++ b/src/mame/drivers/galdrvr.c
@@ -4778,7 +4778,7 @@ GAME( 1981, armorca2, armorcar, scobra, armorcar, scobra, ROT90, "Stern", "
GAME( 1982, tazmania, 0, scobra, tazmania, scobra, ROT90, "Stern", "Tazz-Mania (set 1)", GAME_SUPPORTS_SAVE )
-GAME( 1982, anteater, 0, scobra, anteater, anteater, ROT90, "[Stern] (Tago license)", "Anteater", GAME_SUPPORTS_SAVE )
+GAME( 1982, anteater, 0, anteater, anteater, anteater, ROT90, "[Stern] (Tago license)", "Anteater", GAME_SUPPORTS_SAVE )