From 6713ba292cb96a698f307286495cfd2a2fa360ad Mon Sep 17 00:00:00 2001 From: AJR Date: Sun, 9 Jun 2024 20:47:34 -0400 Subject: sunwise/anoworld.cpp: Fix clang error: lambda capture 'this' is not used [-Werror,-Wunused-lambda-capture] --- src/mame/sunwise/anoworld.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mame/sunwise/anoworld.cpp b/src/mame/sunwise/anoworld.cpp index 103e00bd2f4..9b734d27406 100644 --- a/src/mame/sunwise/anoworld.cpp +++ b/src/mame/sunwise/anoworld.cpp @@ -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); }); -- cgit v1.2.3