summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-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 )