mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
Make stop be called again. Fix METHOD parameter. (nw)
This commit is contained in:
parent
e26e327ef9
commit
1950ff149a
@ -550,7 +550,7 @@ void core_device_t::stop_dev()
|
||||
//NOTE: stop_dev is not removed. It remains so it can be reactivated in case
|
||||
// we run into a situation were RAII and noexcept dtors force us to
|
||||
// to have a device stop() routine which may throw.
|
||||
//stop();
|
||||
stop();
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------------------
|
||||
|
@ -46,7 +46,7 @@ NETLIB_OBJECT(solver)
|
||||
|
||||
/* iteration parameters */
|
||||
, m_gs_sor(*this, "SOR_FACTOR", 1.059)
|
||||
, m_method(*this, "ITERATIVE", "MAT_CR")
|
||||
, m_method(*this, "METHOD", "MAT_CR")
|
||||
, m_accuracy(*this, "ACCURACY", 1e-7)
|
||||
, m_gs_loops(*this, "GS_LOOPS",9) // Gauss-Seidel loops
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user