diff options
author | 2021-12-26 04:40:26 +1100 | |
---|---|---|
committer | 2021-12-26 04:40:26 +1100 | |
commit | f1ed47b3aa98e258b4c4905dea6c5ddeb4927d26 (patch) | |
tree | 11f13864709491511b59b3b0232bbe004286d599 /src/mame/drivers/cortex.cpp | |
parent | da40d38565682e45b16beab3e93ee7dad6d0a4b4 (diff) |
Initialised more variables and updated a few things overlooked earlier.
Diffstat (limited to 'src/mame/drivers/cortex.cpp')
-rw-r--r-- | src/mame/drivers/cortex.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/cortex.cpp b/src/mame/drivers/cortex.cpp index 4b4a7b85d8a..dbf0a51b0da 100644 --- a/src/mame/drivers/cortex.cpp +++ b/src/mame/drivers/cortex.cpp @@ -88,9 +88,9 @@ private: void io_map(address_map &map); void mem_map(address_map &map); - bool m_kbd_ack; - bool m_vdp_int; - u8 m_term_data; + bool m_kbd_ack = 0; + bool m_vdp_int = 0; + u8 m_term_data = 0U; required_device<tms9995_device> m_maincpu; required_region_ptr<u8> m_rom; required_shared_ptr<u8> m_ram; |