summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2018-08-09 21:30:28 +0100
committer smf- <smf-@users.noreply.github.com>2018-08-09 21:30:28 +0100
commit768714fa5ac2170a13ce5c1fa9775f33a479aa31 (patch)
tree1487f484a3d98cff49e50f9cfa68493533ddc844
parent2c31275f79bf542301743b0af9e3a95665e6b613 (diff)
remove unused this (nw)
-rw-r--r--src/devices/bus/interpro/sr/edge.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/interpro/sr/edge.cpp b/src/devices/bus/interpro/sr/edge.cpp
index bcd1f58754d..8314e355a3e 100644
--- a/src/devices/bus/interpro/sr/edge.cpp
+++ b/src/devices/bus/interpro/sr/edge.cpp
@@ -350,8 +350,8 @@ void edge2plus_processor_device_base::map(address_map &map)
{
map(0x000, 0x003).rw(FUNC(edge2plus_processor_device_base::reg0_r), FUNC(edge2plus_processor_device_base::reg0_w));
- map(0x008, 0x008).lr8("mouse_x", [this](address_space &space, offs_t offset, u8 mem_mask) { return 0; });
- map(0x00c, 0x00c).lr8("mouse_y", [this](address_space &space, offs_t offset, u8 mem_mask) { return 0; });
+ map(0x008, 0x008).lr8("mouse_x", [](address_space &space, offs_t offset, u8 mem_mask) { return 0; });
+ map(0x00c, 0x00c).lr8("mouse_y", [](address_space &space, offs_t offset, u8 mem_mask) { return 0; });
map(0x010, 0x01f).rw("scc", FUNC(z80scc_device::cd_ab_r), FUNC(z80scc_device::cd_ab_w)).umask32(0x000000ff);