summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Patrick Mackinlay <pmackinlay@hotmail.com>2019-02-14 09:32:44 +0700
committer GitHub <noreply@github.com>2019-02-14 09:32:44 +0700
commitbdbe21690acea5c64a63e81f934cbca2685c0ac4 (patch)
tree9dec8a2d4e9599ef7a80de15bfa99a002d7fedb5
parentc5a513ca90d3464df92178a3ca16cb5c586519db (diff)
parent9fad7e4c23012fdc64133069d179f1897f1ee604 (diff)
Merge pull request #4641 from maximumspatium/master
Fix compilation error when compiled with Clang 10.0.0 (Xcode 10.1)
-rw-r--r--src/mame/drivers/jazz.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/jazz.cpp b/src/mame/drivers/jazz.cpp
index a0b78f504b7..bfc3fb90a50 100644
--- a/src/mame/drivers/jazz.cpp
+++ b/src/mame/drivers/jazz.cpp
@@ -142,7 +142,7 @@ void jazz_state::jazz_common_map(address_map &map)
map(0x80007000, 0x80007007).rw(m_ace[1], FUNC(ns16550_device::ins8250_r), FUNC(ns16550_device::ins8250_w));
map(0x80008000, 0x80008007).rw(m_lpt, FUNC(pc_lpt_device::read), FUNC(pc_lpt_device::write)).umask64(0xffffffff);
map(0x80009000, 0x8000afff).ram().share("nvram"); // 9000-9fff unprotected/a000-afff protected?
- map(0x8000b000, 0x8000b007).lr8("mac", [this](offs_t offset)
+ map(0x8000b000, 0x8000b007).lr8("mac", [](offs_t offset)
{
// mac address and checksum
static u8 const mac[] = { 0x00, 0x00, 0x6b, 0x12, 0x34, 0x56, 0x00, 0xf7 };