mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
alien.cpp: Fix clang error: lambda capture 'this' is not used [-Werror,-Wunused-lambda-capture]
This commit is contained in:
parent
2982b9bccb
commit
7d7b98f1bb
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ void alien_state::alien_map(address_map &map)
|
|||
}
|
||||
return 0xffffffff;
|
||||
}),
|
||||
NAME([this] (offs_t offset, u32 data, u32 mem_mask) {
|
||||
NAME([] (offs_t offset, u32 data, u32 mem_mask) {
|
||||
// writing to 0x14000000: outputs
|
||||
})
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue