summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-02-14 20:34:21 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-02-14 20:34:21 -0500
commite415d84fabd4b7d8b0dfdcbb24210130a89c13b8 (patch)
tree0c23c6f355ca710d922f24b71251f06adafbd8d6
parentfe8d56bb6ec42b7c96774e6d9178099f6ff25bf9 (diff)
Fix build by removing unused variables (nw)
-rw-r--r--src/devices/bus/abckb/abc77.cpp2
-rw-r--r--src/devices/bus/abckb/abc77.h1
-rw-r--r--src/devices/bus/snes/sgb.cpp1
-rw-r--r--src/devices/bus/snes/sgb.h1
4 files changed, 1 insertions, 4 deletions
diff --git a/src/devices/bus/abckb/abc77.cpp b/src/devices/bus/abckb/abc77.cpp
index 9f4b469a298..3f2f58d27eb 100644
--- a/src/devices/bus/abckb/abc77.cpp
+++ b/src/devices/bus/abckb/abc77.cpp
@@ -423,7 +423,7 @@ abc77_device::abc77_device(const machine_config &mconfig, device_type type, cons
m_dsw(*this, "DSW"),
m_txd(1), m_keylatch(0),
m_keydown(1),
- m_clock(0), m_hys(0), m_reset(0),
+ m_clock(0), m_hys(0),
m_stb(1), m_j3(0), m_serial_timer(nullptr), m_reset_timer(nullptr)
{
}
diff --git a/src/devices/bus/abckb/abc77.h b/src/devices/bus/abckb/abc77.h
index 95e740dd01f..f03aa9a1980 100644
--- a/src/devices/bus/abckb/abc77.h
+++ b/src/devices/bus/abckb/abc77.h
@@ -72,7 +72,6 @@ private:
int m_keydown; // key down
int m_clock; // transmit clock
int m_hys; // hysteresis
- int m_reset; // reset
int m_stb; // strobe
uint8_t m_j3;
diff --git a/src/devices/bus/snes/sgb.cpp b/src/devices/bus/snes/sgb.cpp
index dd083668fda..710ac885d3e 100644
--- a/src/devices/bus/snes/sgb.cpp
+++ b/src/devices/bus/snes/sgb.cpp
@@ -39,7 +39,6 @@ sns_rom_sgb_device::sns_rom_sgb_device(const machine_config &mconfig, device_typ
m_joy3(0),
m_joy4(0),
m_vram_offs(0),
- m_mlt_req(0),
m_lcd_row(0),
m_packetsize(0),
m_bios_disabled(false)
diff --git a/src/devices/bus/snes/sgb.h b/src/devices/bus/snes/sgb.h
index 4a15edd6b68..8238b2e3de8 100644
--- a/src/devices/bus/snes/sgb.h
+++ b/src/devices/bus/snes/sgb.h
@@ -68,7 +68,6 @@ private:
uint8_t m_joy1, m_joy2, m_joy3, m_joy4;
uint8_t m_joy_pckt[16];
uint16_t m_vram_offs;
- uint8_t m_mlt_req;
uint32_t m_lcd_buffer[4 * 160 * 8];
uint16_t m_lcd_output[320];