summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/milton6805.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/milton6805.cpp')
-rw-r--r--src/mame/drivers/milton6805.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/milton6805.cpp b/src/mame/drivers/milton6805.cpp
index 1377e8d85a2..dd973260a41 100644
--- a/src/mame/drivers/milton6805.cpp
+++ b/src/mame/drivers/milton6805.cpp
@@ -56,8 +56,8 @@ private:
required_device<milton_filter_device> m_filter;
required_ioport_array<5> m_inputs;
- u8 m_data;
- u8 m_control;
+ u8 m_data = 0;
+ u8 m_control = 0xff;
void data_w(u8 data);
u8 data_r();
@@ -93,7 +93,7 @@ protected:
virtual void sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) override;
private:
- sound_stream *m_stream;
+ sound_stream *m_stream = nullptr;
output_finder<> m_led_out;
};