mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
bus/cbus/pc9801_86.cpp: Fix clang error: lambda capture 'this' is not used [-Werror,-Wunused-lambda-capture]
This commit is contained in:
parent
e428b6bd07
commit
28cb15d131
@ -364,6 +364,7 @@ void pc9801_86_device::io_map(address_map &map)
|
||||
map(0x0c, 0x0c).lrw8(
|
||||
NAME([this] () {
|
||||
// TODO: recording mode
|
||||
(void)this;
|
||||
return 0;
|
||||
}),
|
||||
NAME([this] (u8 data) {
|
||||
|
Loading…
Reference in New Issue
Block a user