summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tecmosys.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tecmosys.h')
-rw-r--r--src/mame/includes/tecmosys.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/tecmosys.h b/src/mame/includes/tecmosys.h
index 5560d0e0fc7..3ba4206c949 100644
--- a/src/mame/includes/tecmosys.h
+++ b/src/mame/includes/tecmosys.h
@@ -74,20 +74,20 @@ private:
required_region_ptr<u8> m_sprite_region;
std::unique_ptr<u8[]> m_sprite_gfx;
- offs_t m_sprite_gfx_mask;
+ offs_t m_sprite_gfx_mask = 0;
required_memory_bank m_audiobank;
required_memory_bank_array<2> m_okibank;
- int m_spritelist;
+ int m_spritelist = 0;
bitmap_ind16 m_sprite_bitmap;
bitmap_ind16 m_tmp_tilemap_composebitmap;
bitmap_ind16 m_tmp_tilemap_renderbitmap;
- tilemap_t *m_tilemap[4];
- u8 m_device_read_ptr;
- u8 m_device_status;
- const struct prot_data* m_device_data;
- u8 m_device_value;
+ tilemap_t *m_tilemap[4]{};
+ u8 m_device_read_ptr = 0;
+ u8 m_device_status = 0;
+ const struct prot_data* m_device_data = nullptr;
+ u8 m_device_value = 0;
u8 sound_command_pending_r();
void sound_nmi_disable_w(u8 data);