summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-02-17 00:25:05 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-02-17 00:25:05 -0500
commit47f7a82ce8fbdf9410dcb9b34f6a5243a804c002 (patch)
treea4aca482f89ff64cf8a2446da1fca0328521b98f
parent2fd82e2c6b38918a96a75151350e255f8efde02b (diff)
Build fixes (nw)
-rw-r--r--src/devices/video/m50458.cpp2
-rw-r--r--src/devices/video/m50458.h1
-rw-r--r--src/mame/drivers/itech32.cpp2
3 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/video/m50458.cpp b/src/devices/video/m50458.cpp
index 93e98ce2642..ebae23b8af4 100644
--- a/src/devices/video/m50458.cpp
+++ b/src/devices/video/m50458.cpp
@@ -285,6 +285,8 @@ WRITE_LINE_MEMBER( m50458_device::set_cs_line )
WRITE_LINE_MEMBER( m50458_device::set_clock_line )
{
+ (void)m_clock_line;
+
if (m_reset_line == CLEAR_LINE)
{
if(state == 1)
diff --git a/src/devices/video/m50458.h b/src/devices/video/m50458.h
index 976034d695b..5be6ceaf08c 100644
--- a/src/devices/video/m50458.h
+++ b/src/devices/video/m50458.h
@@ -82,7 +82,6 @@ private:
uint16_t m_osd_addr;
std::unique_ptr<uint8_t[]> m_shadow_gfx;
- uint8_t m_bg_pen;
uint8_t m_phase;
uint8_t m_scrf,m_scrr;
uint8_t m_space;
diff --git a/src/mame/drivers/itech32.cpp b/src/mame/drivers/itech32.cpp
index c9d397d9de2..ecf2b9c4230 100644
--- a/src/mame/drivers/itech32.cpp
+++ b/src/mame/drivers/itech32.cpp
@@ -1763,7 +1763,7 @@ MACHINE_CONFIG_START(itech32_state::drivedge)
MCFG_SPEAKER_STANDARD_STEREO("left_back", "right_back")
- MCFG_SOUND_MODIFY("ensoniq", ES5506, SOUND_CLOCK)
+ MCFG_SOUND_MODIFY("ensoniq")
MCFG_ES5506_CHANNELS(2) /* channels */
MCFG_SOUND_ROUTE(2, "right_back", 0.1) /* swapped stereo */
MCFG_SOUND_ROUTE(3, "left_back", 0.1)