heathkit/tlb.cpp: Fixed warning about uninitialised member variable. (#11538)

This commit is contained in:
Mark Garlanger 2023-09-11 13:33:00 -05:00 committed by GitHub
parent 7d57f03fd5
commit 785791632e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
{
}