diff options
author | 2015-12-04 07:02:45 +0100 | |
---|---|---|
committer | 2015-12-04 07:02:45 +0100 | |
commit | 0c56ac848dd0eba359500d444ecbb51f215ff5b9 (patch) | |
tree | ad3444449470cec94ccaffd174c5a4d1bc90d1e1 /src/devices/sound/wave.cpp | |
parent | 68f961927a156c47cb444c1f66258a89342d0205 (diff) |
clang-modernize part 3
Diffstat (limited to 'src/devices/sound/wave.cpp')
-rw-r--r-- | src/devices/sound/wave.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/wave.cpp b/src/devices/sound/wave.cpp index 744c5acd068..650389b332e 100644 --- a/src/devices/sound/wave.cpp +++ b/src/devices/sound/wave.cpp @@ -72,7 +72,7 @@ void wave_device::sound_stream_update(sound_stream &stream, stream_sample_t **in double time_index; double duration; stream_sample_t *left_buffer = outputs[0]; - stream_sample_t *right_buffer = NULL; + stream_sample_t *right_buffer = nullptr; int i; speaker_device_iterator spkiter(m_cass->machine().root_device()); |