diff options
author | 2020-06-04 22:14:21 +0200 | |
---|---|---|
committer | 2020-06-04 22:14:21 +0200 | |
commit | f49a2f5b8ff8429c1a50fde3cee86af5d24329c9 (patch) | |
tree | bf8d1efb66268cf6ab17dbff5ab9abe8de78a27e /src/devices/bus/interpro | |
parent | 370807115062124fd7304101665eb2d51a56f32f (diff) |
devices/bus/interpro/sr/gt.cpp, src/mame/machine/interpro_ioga.cpp: initialize some variables to avoid problems in devnoclear build (nw)
Diffstat (limited to 'src/devices/bus/interpro')
-rw-r--r-- | src/devices/bus/interpro/sr/gt.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/bus/interpro/sr/gt.cpp b/src/devices/bus/interpro/sr/gt.cpp index a01017fe2ac..a5411ce7c19 100644 --- a/src/devices/bus/interpro/sr/gt.cpp +++ b/src/devices/bus/interpro/sr/gt.cpp @@ -506,6 +506,7 @@ gt_device_base::gt_device_base(const machine_config &mconfig, device_type type, , m_vram(*this, "vram%u", 0) , m_mram(*this, "mram%u", 0) , m_bpu(*this, "bpu%u", 0) + , m_control(0) , m_double_buffered(double_buffered) , m_masked_reads(masked_reads) { |