banprestoms.cpp: Fix clang error: lambda capture 'this' is not used [-Werror,-Wunused-lambda-capture]

This commit is contained in:
AJR 2022-11-04 08:50:55 -04:00
parent 748ad15430
commit 53a3d926ea

View File

@ -261,7 +261,7 @@ void banprestoms_state::prg_map(address_map &map)
map(0x0e0004, 0x0e0005).portr("IN2"); map(0x0e0004, 0x0e0005).portr("IN2");
// Expects a '1' when entering RTC test (RTC ready line?) // 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) * Unknown RTC type (service mode in tvdenwad -> first item)
* 4-bit access, in lower/upper digit fashion * 4-bit access, in lower/upper digit fashion