summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/disound.cpp
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-12-14 23:44:37 +0100
committer mooglyguy <therealmogminer@gmail.com>2018-12-14 23:45:04 +0100
commitbf0cfcf13d2a1e9b3baac38f47f02c094e99cae0 (patch)
tree3fdd99ed1938aeb4b7dc6c63ef301452a30ae3a7 /src/emu/disound.cpp
parent3cbc7627cabd29242b3df66a366c998f92104102 (diff)
-keyboard/a1200, changela, goldnpkr, m68705prg, mexico86, pipeline, pitnrun, qix, quizpun2, stfight, tigeroad: Removed MACHINE_CONFIG. [Ryan Holtz]
-m68705, m68hc05: Removed MCFG. [Ryan Holtz] -qix: First-pass cleanup. [Ryan Holtz] -core: Fixed spelling of "nonexistent". [Ryan Holtz]
Diffstat (limited to 'src/emu/disound.cpp')
-rw-r--r--src/emu/disound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/disound.cpp b/src/emu/disound.cpp
index 651cd1e2a46..7eae114389d 100644
--- a/src/emu/disound.cpp
+++ b/src/emu/disound.cpp
@@ -336,13 +336,13 @@ void device_sound_interface::interface_post_start()
int streamoutputnum;
sound_stream *const outputstream = sound.output_to_stream_output(outputnum, streamoutputnum);
if (!outputstream)
- fatalerror("Sound device '%s' specifies route for non-existent output #%d\n", sound.device().tag(), outputnum);
+ fatalerror("Sound device '%s' specifies route for nonexistent output #%d\n", sound.device().tag(), outputnum);
// find the input stream to connect to
int streaminputnum;
sound_stream *const inputstream = input_to_stream_input(inputnum++, streaminputnum);
if (!inputstream)
- fatalerror("Sound device '%s' targeted output #%d to non-existant device '%s' input %d\n", sound.device().tag(), outputnum, m_device.tag(), inputnum - 1);
+ fatalerror("Sound device '%s' targeted output #%d to nonexistent device '%s' input %d\n", sound.device().tag(), outputnum, m_device.tag(), inputnum - 1);
// set the input
inputstream->set_input(streaminputnum, outputstream, streamoutputnum, route.m_gain);