mirror of
https://github.com/holub/mame
synced 2025-04-19 07:00:31 +03:00
commodore/c65.cpp: fix lambda capture
This commit is contained in:
parent
3e0602b72f
commit
e6495cc1d0
@ -132,7 +132,7 @@ void c65_state::vic4567_map(address_map &map)
|
||||
})
|
||||
);
|
||||
map(0x15, 0x15).lr8(
|
||||
NAME([this] (offs_t offset) {
|
||||
NAME([] (offs_t offset) {
|
||||
return 0xff; // silence log for now
|
||||
})
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user