From 53a3d926eaeecb7be99a5827d69e8c109c1e1703 Mon Sep 17 00:00:00 2001 From: AJR Date: Fri, 4 Nov 2022 08:50:55 -0400 Subject: banprestoms.cpp: Fix clang error: lambda capture 'this' is not used [-Werror,-Wunused-lambda-capture] --- src/mame/seibu/banprestoms.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/seibu/banprestoms.cpp b/src/mame/seibu/banprestoms.cpp index 357ba6f652a..1a3098564ab 100644 --- a/src/mame/seibu/banprestoms.cpp +++ b/src/mame/seibu/banprestoms.cpp @@ -261,7 +261,7 @@ void banprestoms_state::prg_map(address_map &map) map(0x0e0004, 0x0e0005).portr("IN2"); // Expects a '1' when entering RTC test (RTC ready line?) - map(0x0e0006, 0x0e0007).lr8(NAME([this](offs_t offset) { return 1; })); + map(0x0e0006, 0x0e0007).lr8(NAME([](offs_t offset) { return 1; })); /* * Unknown RTC type (service mode in tvdenwad -> first item) * 4-bit access, in lower/upper digit fashion -- cgit v1.2.3