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

This commit is contained in:
AJR 2024-06-09 20:47:34 -04:00
parent a3575cf836
commit 6713ba292c

View File

@ -405,6 +405,7 @@ void anoworld_state::anoworld(machine_config &config)
// punts to an insert coin screen if this is 0xff,
// reacts to D0-D7 signals in test mode.
//LOGPORTS("%s: PPI0 port C in\n", machine().describe_context());
(void)this;
return uint8_t(0);
});
ppi0.out_pa_callback().set([this] (uint8_t data) { LOGPORTS("%s: PPI0 port A out %02x\n", machine().describe_context(), data); });