summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/mirax.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2022-03-25 00:15:48 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2022-03-25 00:15:48 +1100
commit971c2c80c89a5859d2d66e735b2678578c6ffd2f (patch)
tree2c686aff20efe0af756a390a1aaf49ade51fabe9 /src/mame/drivers/mirax.cpp
parent399576e1f4fa58aa553921f9753d80ba2981a004 (diff)
init vars for coverity (drivers/m)
Diffstat (limited to 'src/mame/drivers/mirax.cpp')
-rw-r--r--src/mame/drivers/mirax.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/mirax.cpp b/src/mame/drivers/mirax.cpp
index e92f71cf7ef..564f89a4200 100644
--- a/src/mame/drivers/mirax.cpp
+++ b/src/mame/drivers/mirax.cpp
@@ -145,10 +145,10 @@ private:
required_shared_ptr<uint8_t> m_spriteram;
required_shared_ptr<uint8_t> m_colorram;
- uint8_t m_nAyCtrl;
- uint8_t m_nmi_mask;
- uint8_t m_flipscreen_x;
- uint8_t m_flipscreen_y;
+ uint8_t m_nAyCtrl = 0;
+ uint8_t m_nmi_mask = 0;
+ uint8_t m_flipscreen_x = 0;
+ uint8_t m_flipscreen_y = 0;
void audio_w(offs_t offset, uint8_t data);
DECLARE_WRITE_LINE_MEMBER(nmi_mask_w);