summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author angelosa <lordkale4@gmail.com>2024-07-27 21:34:38 +0200
committer angelosa <lordkale4@gmail.com>2024-07-27 21:34:38 +0200
commite6495cc1d041b928347660691db021c8ccdc45fc (patch)
treec30ceb74969108a9e2e865a8ece7904331f58e93
parent3e0602b72f23106517636e24413d3a75b6e5b31f (diff)
commodore/c65.cpp: fix lambda capture
-rw-r--r--src/mame/commodore/c65.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/commodore/c65.cpp b/src/mame/commodore/c65.cpp
index 37adbb82315..6adcc4509e3 100644
--- a/src/mame/commodore/c65.cpp
+++ b/src/mame/commodore/c65.cpp
@@ -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
})
);