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

This commit is contained in:
AJR 2023-11-22 21:03:45 -05:00
parent 15489d768e
commit adc557f8f9

View File

@ -317,7 +317,7 @@ void smsbootleg_state::sms_supergame_map(address_map &map)
})
);
map(0xffff, 0xffff).lw8(
NAME([this] (u8 data) {
NAME([] (u8 data) {
if (data != 2)
throw emu_fatalerror("ROM mapper select %02x\n", data);
})