From e6495cc1d041b928347660691db021c8ccdc45fc Mon Sep 17 00:00:00 2001 From: angelosa Date: Sat, 27 Jul 2024 21:34:38 +0200 Subject: commodore/c65.cpp: fix lambda capture --- src/mame/commodore/c65.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }) ); -- cgit v1.2.3