summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2022-10-08 23:54:08 +0200
committer hap <happppp@users.noreply.github.com>2022-10-08 23:54:27 +0200
commit3f3e1e2135861ae00150750d377bde1a3b7a9d4e (patch)
treed6035dd068a657781dafd03256f9979fd6145086 /src/devices/machine
parent14cf63fd846b10e708df383ca1d77f99d911b8fd (diff)
advision: get rid of led fade, fix INS(MAME fastforward) not working, add driver notes
Diffstat (limited to 'src/devices/machine')
-rw-r--r--src/devices/machine/ldv4200hle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/ldv4200hle.cpp b/src/devices/machine/ldv4200hle.cpp
index db8f86a2a03..577e236fa63 100644
--- a/src/devices/machine/ldv4200hle.cpp
+++ b/src/devices/machine/ldv4200hle.cpp
@@ -735,10 +735,10 @@ void pioneer_ldv4200hle_device::device_reset()
// reset our state
m_vbi_fetch->adjust(attotime::never);
- std::fill_n(m_cmd_buffer, 0, std::size(m_cmd_buffer));
+ std::fill_n(m_cmd_buffer, std::size(m_cmd_buffer), 0);
m_cmd_length = 0;
m_cmd_running = false;
- std::fill_n(m_reply_buffer, 0, std::size(m_reply_buffer));
+ std::fill_n(m_reply_buffer, std::size(m_reply_buffer), 0);
m_reply_write_index = 0;
m_reply_read_index = 0;
m_replying = false;