diff options
Diffstat (limited to 'src/mame/audio/zaxxon.cpp')
-rw-r--r-- | src/mame/audio/zaxxon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/zaxxon.cpp b/src/mame/audio/zaxxon.cpp index 10923afc895..8220bf1885f 100644 --- a/src/mame/audio/zaxxon.cpp +++ b/src/mame/audio/zaxxon.cpp @@ -93,7 +93,7 @@ static const char *const zaxxon_sample_names[] = MACHINE_CONFIG_START(zaxxon_state::zaxxon_samples) - MCFG_SOUND_ADD("samples", SAMPLES, 0) + MCFG_DEVICE_ADD("samples", SAMPLES) MCFG_SAMPLES_CHANNELS(12) MCFG_SAMPLES_NAMES(zaxxon_sample_names) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "speaker", 0.25) @@ -193,7 +193,7 @@ static const char *const congo_sample_names[] = MACHINE_CONFIG_START(zaxxon_state::congo_samples) - MCFG_SOUND_ADD("samples", SAMPLES, 0) + MCFG_DEVICE_ADD("samples", SAMPLES) MCFG_SAMPLES_CHANNELS(5) MCFG_SAMPLES_NAMES(congo_sample_names) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "speaker", 0.25) |