Skip to content

Commit

Permalink
01743: anteater: Music is really loud and clips
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsgiles committed May 5, 2008
1 parent 1a1ab7b commit ad5e3bb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions src/mame/drivers/galaxian.c
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand All @@ -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


Expand Down Expand Up @@ -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



/*************************************
*
Expand Down
2 changes: 1 addition & 1 deletion src/mame/drivers/galdrvr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 )



Expand Down

0 comments on commit ad5e3bb

Please sign in to comment.