summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ted Green <tedgreen99@protonmail.com>2017-07-10 19:30:16 -0600
committer Ted Green <tedgreen99@protonmail.com>2017-07-10 19:30:16 -0600
commit0d1e514f644fdd083e013fed7b08bbde0f12a2c9 (patch)
treedc99b75645e5b7cf259547b308a7c366ce3405e8
parent5b600eac2c0a9dc9ca54b3485b04cf940cc5bb3a (diff)
Fixed compile (nw)
-rw-r--r--src/mame/audio/dcs.cpp1
-rw-r--r--src/mame/drivers/vegas.cpp4
2 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/audio/dcs.cpp b/src/mame/audio/dcs.cpp
index c2109facd3b..5574f61fd9e 100644
--- a/src/mame/audio/dcs.cpp
+++ b/src/mame/audio/dcs.cpp
@@ -1832,7 +1832,6 @@ READ16_MEMBER( dcs_audio_device::adsp_control_r )
WRITE16_MEMBER(dcs_audio_device:: adsp_control_w )
{
- uint16_t data_change = data ^ m_control_regs[offset];
m_control_regs[offset] = data;
switch (offset)
diff --git a/src/mame/drivers/vegas.cpp b/src/mame/drivers/vegas.cpp
index 50c95e2fdac..8bd1d9da524 100644
--- a/src/mame/drivers/vegas.cpp
+++ b/src/mame/drivers/vegas.cpp
@@ -361,8 +361,8 @@ public:
void update_sio_irqs();
- DECLARE_WRITE_LINE_MEMBER(vegas_state::watchdog_reset);
- DECLARE_WRITE_LINE_MEMBER(vegas_state::watchdog_irq);
+ DECLARE_WRITE_LINE_MEMBER(watchdog_reset);
+ DECLARE_WRITE_LINE_MEMBER(watchdog_irq);
DECLARE_WRITE32_MEMBER(timekeeper_w);
DECLARE_READ32_MEMBER(timekeeper_r);
void reset_sio(void);