mirror of
https://github.com/holub/mame
synced 2025-04-29 19:37:17 +03:00
Remove extraneous wav file from all Konami System 573 digital io games (nw)
This commit is contained in:
parent
bc1c18c746
commit
c883054e75
@ -71,13 +71,6 @@ void k573fpga_device::device_reset()
|
|||||||
position_diff = 0;
|
position_diff = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char *const k573fpga_sample_names[] =
|
|
||||||
{
|
|
||||||
"*k573fpga",
|
|
||||||
"audio",
|
|
||||||
nullptr
|
|
||||||
};
|
|
||||||
|
|
||||||
void k573fpga_device::device_add_mconfig(machine_config &config)
|
void k573fpga_device::device_add_mconfig(machine_config &config)
|
||||||
{
|
{
|
||||||
MAS3507D(config, "mpeg");
|
MAS3507D(config, "mpeg");
|
||||||
@ -87,7 +80,6 @@ void k573fpga_device::device_add_mconfig(machine_config &config)
|
|||||||
SPEAKER(config, "rspeaker").front_right();
|
SPEAKER(config, "rspeaker").front_right();
|
||||||
SAMPLES(config, m_samples);
|
SAMPLES(config, m_samples);
|
||||||
m_samples->set_channels(2);
|
m_samples->set_channels(2);
|
||||||
m_samples->set_samples_names(k573fpga_sample_names);
|
|
||||||
m_samples->set_samples_update_callback(FUNC(k573fpga_device::k573fpga_stream_update));
|
m_samples->set_samples_update_callback(FUNC(k573fpga_device::k573fpga_stream_update));
|
||||||
m_samples->add_route(0, "lspeaker", 1.0);
|
m_samples->add_route(0, "lspeaker", 1.0);
|
||||||
m_samples->add_route(1, "rspeaker", 1.0);
|
m_samples->add_route(1, "rspeaker", 1.0);
|
||||||
|
Loading…
Reference in New Issue
Block a user