mirror of
https://github.com/holub/mame
synced 2025-06-30 07:58:56 +03:00
fix clang build (nw)
This commit is contained in:
parent
ace8e401fc
commit
7427f8ea4b
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user