summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-02-24 20:24:15 -0500
committer AJR <ajrhacker@users.noreply.github.com>2017-02-24 20:24:15 -0500
commit8530f35a98b9d89f2874fa47d395b4a55219d479 (patch)
tree7c17bc094597a04c5b9510fd16cecd07c57b4885
parent1f5bf4666d603575aaa42dbc77437f3d54652c56 (diff)
Fix build (nw)
-rw-r--r--src/devices/machine/mm5740.cpp2
-rw-r--r--src/mame/drivers/h19.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/mm5740.cpp b/src/devices/machine/mm5740.cpp
index df8f5e43985..9756dd95938 100644
--- a/src/devices/machine/mm5740.cpp
+++ b/src/devices/machine/mm5740.cpp
@@ -43,7 +43,7 @@ const tiny_rom_entry *mm5740_device::device_rom_region() const
mm5740_device::mm5740_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, MM5740, "MM5740", tag, owner, clock, "mm5740", __FILE__),
- m_read_x({*this, *this, *this, *this, *this, *this, *this, *this, *this}),
+ m_read_x{{*this}, {*this}, {*this}, {*this}, {*this}, {*this}, {*this}, {*this}, {*this}},
m_read_shift(*this),
m_read_control(*this),
m_write_data_ready(*this),
diff --git a/src/mame/drivers/h19.cpp b/src/mame/drivers/h19.cpp
index 50d4781e4f2..34fa48ffb28 100644
--- a/src/mame/drivers/h19.cpp
+++ b/src/mame/drivers/h19.cpp
@@ -107,7 +107,7 @@ public:
MC6845_UPDATE_ROW(crtc_update_row);
private:
- uint8_t m_term_data;
+ //uint8_t m_term_data;
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
virtual void machine_reset() override;
required_device<palette_device> m_palette;