diff options
author | 2020-07-04 08:11:33 +0200 | |
---|---|---|
committer | 2020-07-04 08:11:33 +0200 | |
commit | 19dfc7e9786e011cf28eefe4517307e903f515ef (patch) | |
tree | 02f2ab04233c3bcb701237a0f164ae2ee05485a5 /src/devices/machine/saa1043.cpp | |
parent | 57c8f2ea82e583fe15085e3c172da648563f4401 (diff) |
devices/machine/saa1043, mame/video/k057714: fixed some initialization problems noticed in debug devnoclear builds
Diffstat (limited to 'src/devices/machine/saa1043.cpp')
-rw-r--r-- | src/devices/machine/saa1043.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/machine/saa1043.cpp b/src/devices/machine/saa1043.cpp index 7e480ddcf4b..c6766cf5b7e 100644 --- a/src/devices/machine/saa1043.cpp +++ b/src/devices/machine/saa1043.cpp @@ -22,6 +22,7 @@ DEFINE_DEVICE_TYPE(SAA1043, saa1043_device, "saa1043", "Philips SAA1043") saa1043_device::saa1043_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, SAA1043, tag, owner, clock) , m_outputs(*this) + , m_type(PAL) { std::fill(std::begin(m_outputs_hooked), std::end(m_outputs_hooked), false); } |