diff options
Diffstat (limited to 'src/devices/machine/netlist.cpp')
-rw-r--r-- | src/devices/machine/netlist.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/devices/machine/netlist.cpp b/src/devices/machine/netlist.cpp index 851c63cc2c9..bfd654dfff3 100644 --- a/src/devices/machine/netlist.cpp +++ b/src/devices/machine/netlist.cpp @@ -52,7 +52,6 @@ DEFINE_DEVICE_TYPE(NETLIST_LOGIC_OUTPUT, netlist_mame_logic_output_device, "nl DEFINE_DEVICE_TYPE(NETLIST_ANALOG_OUTPUT, netlist_mame_analog_output_device, "nl_analog_out", "Netlist Analog Output") DEFINE_DEVICE_TYPE(NETLIST_STREAM_OUTPUT, netlist_mame_stream_output_device, "nl_stream_out", "Netlist Stream Output") - // ---------------------------------------------------------------------------------------- // Special netlist extension devices .... // ---------------------------------------------------------------------------------------- @@ -88,7 +87,6 @@ protected: m_parent.logerror("netlist ERROR: %s\n", ls.c_str()); break; case plib::plog_level::FATAL: - //throw emu_fatalerror(1, "netlist FATAL: %s\n", ls.c_str()); m_parent.logerror("netlist FATAL: %s\n", ls.c_str()); break; } @@ -128,10 +126,14 @@ protected: case plib::plog_level::FATAL: osd_printf_error("netlist FATAL: %s\n", ls); break; - //throw emu_fatalerror(1, "netlist FATAL: %s\n", ls.c_str()); } } + plib::unique_ptr<plib::dynlib_base> static_solver_lib() const noexcept override + { + return plib::make_unique<plib::dynlib_static>(nullptr); + } + private: }; |