diff options
author | 2022-11-04 08:50:55 -0400 | |
---|---|---|
committer | 2022-11-04 08:51:23 -0400 | |
commit | 53a3d926eaeecb7be99a5827d69e8c109c1e1703 (patch) | |
tree | 44110291f1a68a88b174f78c75c6d4f04f587401 | |
parent | 748ad154302b33fa2ff8986b68aa2bdc46618d07 (diff) |
banprestoms.cpp: Fix clang error: lambda capture 'this' is not used [-Werror,-Wunused-lambda-capture]
-rw-r--r-- | src/mame/seibu/banprestoms.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 |