summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-04-02 13:38:19 +0200
committer hap <happppp@users.noreply.github.com>2020-04-02 13:38:19 +0200
commit123b227a796fbebc4c66a562fd4614f8c27fead3 (patch)
tree501d2057faab60cd23f5d5f578b4a7882d62b1e0
parentf40bf01ea6eb4a8c1e9acec4cce3352346bb90fb (diff)
sag: forgot to make console devices private (nw)
-rw-r--r--src/mame/drivers/sag.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/sag.cpp b/src/mame/drivers/sag.cpp
index 0bfdd7a1b2c..f3c58916db8 100644
--- a/src/mame/drivers/sag.cpp
+++ b/src/mame/drivers/sag.cpp
@@ -62,17 +62,17 @@ public:
protected:
virtual void machine_start() override;
- // devices
- required_device<pwm_display_device> m_display;
- required_device<speaker_sound_device> m_speaker;
- required_ioport_array<6> m_inputs;
-
void update_display();
u8 input_r();
void speaker_w(int state);
u16 m_grid = 0;
u16 m_plate = 0;
+
+private:
+ required_device<pwm_display_device> m_display;
+ required_device<speaker_sound_device> m_speaker;
+ required_ioport_array<6> m_inputs;
};
void base_state::machine_start()