Skip to content

Commit

Permalink
bus/cbus/sb16_ct2720.cpp: Fix clang error: lambda capture 'this' is n…
Browse files Browse the repository at this point in the history
…ot used [-Werror,-Wunused-lambda-capture]
  • Loading branch information
ajrhacker committed Nov 23, 2024
1 parent 024f430 commit 7b8072c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/devices/bus/cbus/sb16_ct2720.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ void sb16_ct2720_device::device_add_mconfig(machine_config &config)
m_mixer->add_route(0, "lspeaker", 1.0);
m_mixer->add_route(1, "rspeaker", 1.0);
m_mixer->irq_status_cb().set([this] () {
(void)this;
return 0;
//return (m_irq8 << 0) | (m_irq16 << 1) | (m_irq_midi << 2) | (0x8 << 4);
});
Expand Down

0 comments on commit 7b8072c

Please sign in to comment.