mirror of
https://github.com/holub/mame
synced 2025-10-08 09:30:17 +03:00
mtlchamp, psikyo4 fixes (nw)
This commit is contained in:
parent
1018817124
commit
e3ca055051
@ -914,11 +914,12 @@ MACHINE_RESET_MEMBER(mystwarr_state,metamrph)
|
|||||||
MACHINE_RESET_MEMBER(mystwarr_state,martchmp)
|
MACHINE_RESET_MEMBER(mystwarr_state,martchmp)
|
||||||
{
|
{
|
||||||
int i;
|
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)
|
// 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)
|
MACHINE_RESET_MEMBER(mystwarr_state,gaiapols)
|
||||||
|
@ -23,6 +23,7 @@ public:
|
|||||||
m_bgpen_1(*this, "bgpen_1"),
|
m_bgpen_1(*this, "bgpen_1"),
|
||||||
m_bgpen_2(*this, "bgpen_2"),
|
m_bgpen_2(*this, "bgpen_2"),
|
||||||
m_paletteram(*this, "paletteram"),
|
m_paletteram(*this, "paletteram"),
|
||||||
|
m_ymf_bank(*this, "ymfbank%u", 0),
|
||||||
m_maincpu(*this, "maincpu"),
|
m_maincpu(*this, "maincpu"),
|
||||||
m_eeprom(*this, "eeprom"),
|
m_eeprom(*this, "eeprom"),
|
||||||
m_gfxdecode(*this, "gfxdecode"),
|
m_gfxdecode(*this, "gfxdecode"),
|
||||||
@ -30,8 +31,7 @@ public:
|
|||||||
m_palette2(*this, "rpalette"),
|
m_palette2(*this, "rpalette"),
|
||||||
m_lscreen(*this, "lscreen"),
|
m_lscreen(*this, "lscreen"),
|
||||||
m_rscreen(*this, "rscreen"),
|
m_rscreen(*this, "rscreen"),
|
||||||
m_keys(*this, "KEY.%u", 0),
|
m_keys(*this, "KEY.%u", 0)
|
||||||
m_ymf_bank(*this, "ymfbank%u", 0)
|
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
/* memory pointers */
|
/* memory pointers */
|
||||||
|
Loading…
Reference in New Issue
Block a user