From 785791632e2e4f06318514f45b7ae6147b78efd4 Mon Sep 17 00:00:00 2001 From: Mark Garlanger Date: Mon, 11 Sep 2023 13:33:00 -0500 Subject: [PATCH] heathkit/tlb.cpp: Fixed warning about uninitialised member variable. (#11538) --- src/mame/heathkit/tlb.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mame/heathkit/tlb.cpp b/src/mame/heathkit/tlb.cpp index 63d0f21b874..d237747d8a1 100644 --- a/src/mame/heathkit/tlb.cpp +++ b/src/mame/heathkit/tlb.cpp @@ -1068,7 +1068,8 @@ ioport_constructor heath_super19_tlb_device::device_input_ports() const * Developed by TMSI */ heath_superset_tlb_device::heath_superset_tlb_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : - heath_tlb_device(mconfig, HEATH_SUPERSET, tag, owner, clock) + heath_tlb_device(mconfig, HEATH_SUPERSET, tag, owner, clock), + m_selected_char_set(0) { }