summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2019-05-17 01:01:01 +0100
committer smf- <smf-@users.noreply.github.com>2019-05-17 01:01:25 +0100
commitc883054e759dfb4f28bb05ef98cf3df191681d81 (patch)
treeafc4009ef916c633028d452fbcbe0d5a84a67cf6
parentbc1c18c74685208461ac5b54b5d4ee0e0f94eb61 (diff)
Remove extraneous wav file from all Konami System 573 digital io games (nw)
-rw-r--r--src/mame/machine/k573fpga.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mame/machine/k573fpga.cpp b/src/mame/machine/k573fpga.cpp
index 23bfb6f2a40..9e40625d5ae 100644
--- a/src/mame/machine/k573fpga.cpp
+++ b/src/mame/machine/k573fpga.cpp
@@ -71,13 +71,6 @@ void k573fpga_device::device_reset()
position_diff = 0;
}
-static const char *const k573fpga_sample_names[] =
-{
- "*k573fpga",
- "audio",
- nullptr
-};
-
void k573fpga_device::device_add_mconfig(machine_config &config)
{
MAS3507D(config, "mpeg");
@@ -87,7 +80,6 @@ void k573fpga_device::device_add_mconfig(machine_config &config)
SPEAKER(config, "rspeaker").front_right();
SAMPLES(config, m_samples);
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->add_route(0, "lspeaker", 1.0);
m_samples->add_route(1, "rspeaker", 1.0);