diff options
Diffstat (limited to 'src/emu/sound.cpp')
-rw-r--r-- | src/emu/sound.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/sound.cpp b/src/emu/sound.cpp index ce72846a9c3..ecf675d48f4 100644 --- a/src/emu/sound.cpp +++ b/src/emu/sound.cpp @@ -232,11 +232,11 @@ void sound_stream::set_input(int index, sound_stream *input_stream, int output_i // make sure it's a valid input if (index >= m_input.size()) - fatalerror("stream_set_input attempted to configure non-existant input %d (%d max)\n", index, int(m_input.size())); + fatalerror("stream_set_input attempted to configure nonexistent input %d (%d max)\n", index, int(m_input.size())); // make sure it's a valid output if (input_stream != nullptr && output_index >= input_stream->m_output.size()) - fatalerror("stream_set_input attempted to use a non-existant output %d (%d max)\n", output_index, int(m_output.size())); + fatalerror("stream_set_input attempted to use a nonexistent output %d (%d max)\n", output_index, int(m_output.size())); // if this input is already wired, update the dependent info stream_input &input = m_input[index]; |