summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/7200fifo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/7200fifo.cpp')
-rw-r--r--src/devices/machine/7200fifo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/7200fifo.cpp b/src/devices/machine/7200fifo.cpp
index b15f7f551c6..ff2c9205f91 100644
--- a/src/devices/machine/7200fifo.cpp
+++ b/src/devices/machine/7200fifo.cpp
@@ -59,7 +59,7 @@ void fifo7200_device::device_start()
void fifo7200_device::device_reset()
{
// master reset
- m_buffer.clear();
+ std::fill(m_buffer.begin(), m_buffer.end(), 0);
m_read_ptr = 0;
m_write_ptr = 0;