summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/nile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/nile.cpp')
-rw-r--r--src/devices/sound/nile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/nile.cpp b/src/devices/sound/nile.cpp
index 345c88f2bf0..ef05b670e57 100644
--- a/src/devices/sound/nile.cpp
+++ b/src/devices/sound/nile.cpp
@@ -94,7 +94,7 @@ void nile_device::sound_stream_update(sound_stream &stream, std::vector<read_str
lsptr=leptr=0;
- sound_assert(outputs[0].samples() * 2 < ARRAY_LENGTH(mix));
+ sound_assert(outputs[0].samples() * 2 < std::size(mix));
std::fill_n(&mix[0], outputs[0].samples()*2, 0);
for (v = 0; v < NILE_VOICES; v++)