summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2018-11-28 21:34:43 -0500
committer arbee <rb6502@users.noreply.github.com>2018-11-28 21:34:43 -0500
commitb568e6deab3edaea3f4a15a0253ad64fc5a9897b (patch)
treefd6c72e8f92b40b4b0a4f5c2c5704bb858591b93
parentace5e7f7618f45ae19538d09ef68cc0c6c094824 (diff)
Fix build on macOS (nw)
-rw-r--r--src/mame/drivers/mips.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/mips.cpp b/src/mame/drivers/mips.cpp
index 4ee6203addd..3ec2c0bf800 100644
--- a/src/mame/drivers/mips.cpp
+++ b/src/mame/drivers/mips.cpp
@@ -232,7 +232,7 @@ void rx2030_state::iop_io_map(address_map &map)
map(0x0140, 0x0143).rw(m_net, FUNC(am7990_device::regs_r), FUNC(am7990_device::regs_w));
- map(0x0180, 0x018b).lr8("mac", [this](offs_t offset)
+ map(0x0180, 0x018b).lr8("mac", [](offs_t offset)
{
// Ethernet MAC address (LSB first)
static u8 const mac[] = { 0x00, 0x00, 0x6b, 0x12, 0x34, 0x56 };