mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Fix type mismatch
This commit is contained in:
parent
e88734cd0f
commit
4422b2cf84
1 changed files with 2 additions and 2 deletions
|
@ -494,7 +494,7 @@ NETLIB_UPDATE(solver)
|
|||
if (m_mat_solvers[i]->is_timestep())
|
||||
{
|
||||
// Ignore return value
|
||||
ATTR_UNUSED const nl_double ts = m_mat_solvers[i]->solve();
|
||||
ATTR_UNUSED const netlist_time ts = m_mat_solvers[i]->solve();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -503,7 +503,7 @@ NETLIB_UPDATE(solver)
|
|||
if (m_mat_solvers[i]->is_timestep())
|
||||
{
|
||||
// Ignore return value
|
||||
ATTR_UNUSED const nl_double ts = m_mat_solvers[i]->solve();
|
||||
ATTR_UNUSED const netlist_time ts = m_mat_solvers[i]->solve();
|
||||
}
|
||||
#else
|
||||
for (auto & solver : m_mat_solvers)
|
||||
|
|
Loading…
Reference in a new issue