mirror of
https://github.com/holub/mame
synced 2025-07-05 01:48:29 +03:00
Fix clang error: lambda capture 'this' is not used [-Werror,-Wunused-lambda-capture]
This commit is contained in:
parent
15489d768e
commit
adc557f8f9
@ -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);
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user