summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/devices/nld_4066.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/devices/nld_4066.cpp')
-rw-r--r--src/lib/netlist/devices/nld_4066.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/devices/nld_4066.cpp b/src/lib/netlist/devices/nld_4066.cpp
index 2871e4898ae..25b001b5151 100644
--- a/src/lib/netlist/devices/nld_4066.cpp
+++ b/src/lib/netlist/devices/nld_4066.cpp
@@ -67,14 +67,14 @@ namespace netlist
// We only need to update the net first if this is a time stepping net
if ((1)) // m_R.m_P.net().as_analog().solver().is_timestep())
{
- m_R.update_dev();
+ m_R.update();
m_R.set_R(R);
m_R.m_P.schedule_solve_after(NLTIME_FROM_NS(1));
}
else
{
m_R.set_R(R);
- m_R.update_dev();
+ m_R.update();
}
}
}