mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
nld_4053.cpp: Remove unused lambda capture
This commit is contained in:
parent
d6a47e20e9
commit
ecb1d266c6
@ -96,7 +96,7 @@ namespace netlist
|
||||
nl_fptype sup = (m_supply.VCC().Q_Analog() - m_supply.GND().Q_Analog());
|
||||
Rval = m_base_r() * nlconst::magic(5.0) / sup;
|
||||
}
|
||||
R.change_state([this, &R, Rval]() -> void { this->m_RX.set_R(Rval);});
|
||||
R.change_state([this, Rval]() -> void { this->m_RX.set_R(Rval);});
|
||||
}
|
||||
|
||||
analog::NETLIB_SUB(R_base) m_RX;
|
||||
|
Loading…
Reference in New Issue
Block a user