summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
author David Haywood <28625134+DavidHaywood@users.noreply.github.com>2021-09-23 18:51:23 +0100
committer GitHub <noreply@github.com>2021-09-24 03:51:23 +1000
commit5d7a51946b43d21fe07f86aca4cd7e686b465feb (patch)
tree025f1006af9c2c9f46b2ce39c6f5ae656035890c /src/mame/includes
parent56d36080b4944095bbf7bdcedb210a77b3de8c2e (diff)
Various volume level adjustements to avoid hitting limiter. (#8553)
* Adjusted levels in mustache.cpp, metlfrzr.cpp, xyonix.cpp, labybug.cpp, pgm.cpp, terracre.cpp, boogwing.cpp, astrocde.cpp, and gottlieb.cpp. * Re-balanced some Votrax stuff, attempting to keep the chip output between +/-1.0.
Diffstat (limited to 'src/mame/includes')
-rw-r--r--src/mame/includes/astrocde.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/includes/astrocde.h b/src/mame/includes/astrocde.h
index fe42331227b..ad3b786df8b 100644
--- a/src/mame/includes/astrocde.h
+++ b/src/mame/includes/astrocde.h
@@ -41,6 +41,7 @@ public:
m_maincpu(*this, "maincpu"),
m_votrax(*this, "votrax"),
m_astrocade_sound1(*this, "astrocade1"),
+ m_astrocade_sound2(*this, "astrocade2"),
m_videoram(*this, "videoram"),
m_protected_ram(*this, "protected_ram"),
m_nvram(*this, "nvram"),
@@ -56,6 +57,7 @@ public:
required_device<cpu_device> m_maincpu;
optional_device<votrax_sc01_device> m_votrax;
optional_device<astrocade_io_device> m_astrocade_sound1;
+ optional_device<astrocade_io_device> m_astrocade_sound2;
optional_shared_ptr<uint8_t> m_videoram;
optional_shared_ptr<uint8_t> m_protected_ram;
optional_shared_ptr<uint8_t> m_nvram;