mtlchamp, psikyo4 fixes (nw)

This commit is contained in:
AJR 2018-01-26 13:56:15 -05:00
parent 1018817124
commit e3ca055051
2 changed files with 5 additions and 4 deletions

View File

@ -914,11 +914,12 @@ MACHINE_RESET_MEMBER(mystwarr_state,metamrph)
MACHINE_RESET_MEMBER(mystwarr_state,martchmp)
{
int i;
k054539_device *k054539 = subdevice<k054539_device>("k054539");
m_k054539_1->init_flags(k054539_device::REVERSE_STEREO);
k054539->init_flags(k054539_device::REVERSE_STEREO);
// boost voice(chip 0 channel 4-7)
for (i=4; i<=7; i++) m_k054539_1->set_gain(i, 1.4);
for (i=4; i<=7; i++) k054539->set_gain(i, 1.4);
}
MACHINE_RESET_MEMBER(mystwarr_state,gaiapols)

View File

@ -23,6 +23,7 @@ public:
m_bgpen_1(*this, "bgpen_1"),
m_bgpen_2(*this, "bgpen_2"),
m_paletteram(*this, "paletteram"),
m_ymf_bank(*this, "ymfbank%u", 0),
m_maincpu(*this, "maincpu"),
m_eeprom(*this, "eeprom"),
m_gfxdecode(*this, "gfxdecode"),
@ -30,8 +31,7 @@ public:
m_palette2(*this, "rpalette"),
m_lscreen(*this, "lscreen"),
m_rscreen(*this, "rscreen"),
m_keys(*this, "KEY.%u", 0),
m_ymf_bank(*this, "ymfbank%u", 0)
m_keys(*this, "KEY.%u", 0)
{ }
/* memory pointers */