mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
konamim2 - adjust volume levels one final time. No more late night commits, I swear... (nw)
This commit is contained in:
parent
c043145cb6
commit
59d521a169
@ -1121,8 +1121,8 @@ INPUT_PORTS_END
|
||||
|
||||
void konamim2_state::cr589_config(device_t *device)
|
||||
{
|
||||
device->subdevice<cdda_device>("cdda")->add_route(0, ":lspeaker", 0.5);
|
||||
device->subdevice<cdda_device>("cdda")->add_route(1, ":rspeaker", 0.5);
|
||||
device->subdevice<cdda_device>("cdda")->add_route(0, ":lspeaker", 1.0);
|
||||
device->subdevice<cdda_device>("cdda")->add_route(1, ":rspeaker", 1.0);
|
||||
device = device->subdevice("cdda");
|
||||
}
|
||||
|
||||
@ -1213,9 +1213,10 @@ void konamim2_state::set_arcres(machine_config &config)
|
||||
|
||||
void konamim2_state::add_ymz280b(machine_config &config)
|
||||
{
|
||||
// TODO: The YMZ280B outputs are actually routed to a speaker in each gun
|
||||
YMZ280B(config, m_ymz280b, XTAL(16'934'400));
|
||||
m_ymz280b->add_route(0, "lspeaker", 1.0);
|
||||
m_ymz280b->add_route(1, "rspeaker", 1.0);
|
||||
m_ymz280b->add_route(0, "lspeaker", 0.5);
|
||||
m_ymz280b->add_route(1, "rspeaker", 0.5);
|
||||
}
|
||||
|
||||
void konamim2_state::add_mt48t58(machine_config &config)
|
||||
|
Loading…
Reference in New Issue
Block a user