summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/mgolf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mgolf.cpp')
-rw-r--r--src/mame/drivers/mgolf.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/mgolf.cpp b/src/mame/drivers/mgolf.cpp
index d8a2d4cc6d9..f5923330dd7 100644
--- a/src/mame/drivers/mgolf.cpp
+++ b/src/mame/drivers/mgolf.cpp
@@ -65,14 +65,14 @@ private:
required_shared_ptr<uint8_t> m_video_ram;
/* video-related */
- tilemap_t* m_bg_tilemap;
+ tilemap_t* m_bg_tilemap = nullptr;
/* misc */
- uint8_t m_prev;
- uint8_t m_mask;
+ uint8_t m_prev = 0;
+ uint8_t m_mask = 0;
attotime m_time_pushed;
attotime m_time_released;
- emu_timer *m_interrupt_timer;
+ emu_timer *m_interrupt_timer = nullptr;
};