From b568e6deab3edaea3f4a15a0253ad64fc5a9897b Mon Sep 17 00:00:00 2001 From: arbee Date: Wed, 28 Nov 2018 21:34:43 -0500 Subject: Fix build on macOS (nw) --- src/mame/drivers/mips.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }; -- cgit v1.2.3