diff options
Diffstat (limited to 'src/emu/speaker.cpp')
-rw-r--r-- | src/emu/speaker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/speaker.cpp b/src/emu/speaker.cpp index c525ff2cbc6..485a6be73ca 100644 --- a/src/emu/speaker.cpp +++ b/src/emu/speaker.cpp @@ -90,7 +90,7 @@ void speaker_device::static_set_position(device_t &device, double x, double y, d void speaker_device::mix(INT32 *leftmix, INT32 *rightmix, int &samples_this_update, bool suppress) { // skip if no stream - if (m_mixer_stream == NULL) + if (m_mixer_stream == nullptr) return; // update the stream, getting the start/end pointers around the operation |