fix clang build (nw)

This commit is contained in:
Vas Crabb 2019-07-29 00:06:26 +10:00
parent ace8e401fc
commit 7427f8ea4b
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ private:
required_ioport m_config;
std::unique_ptr<uint8_t[]> m_ram;
emu_timer *m_read_cassette_timer;
//emu_timer *m_read_cassette_timer;
};

View File

@ -106,7 +106,7 @@ void _1943_state::c1943b_map(address_map &map)
// the bootleg expects 0x00 to be returned from the protection reads
// because the protection has been patched out
map(0xc007, 0xc007).lr8("mcu_r", [this]() -> u8 { return 0x00; });
map(0xc007, 0xc007).lr8("mcu_r", []() -> u8 { return 0x00; });
map(0xc807, 0xc807).noprw();
}