diff options
Diffstat (limited to 'src/devices/machine/netlist.cpp')
-rw-r--r-- | src/devices/machine/netlist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/netlist.cpp b/src/devices/machine/netlist.cpp index 7beb745cbf2..280973440a9 100644 --- a/src/devices/machine/netlist.cpp +++ b/src/devices/machine/netlist.cpp @@ -422,11 +422,11 @@ public: struct channel { - netlist::poolptr<netlist::param_str_t> m_param_name; + netlist::pool_owned_ptr<netlist::param_str_t> m_param_name; netlist::param_double_t *m_param; stream_sample_t *m_buffer; - netlist::poolptr<netlist::param_double_t> m_param_mult; - netlist::poolptr<netlist::param_double_t> m_param_offset; + netlist::pool_owned_ptr<netlist::param_double_t> m_param_mult; + netlist::pool_owned_ptr<netlist::param_double_t> m_param_offset; }; channel m_channels[MAX_INPUT_CHANNELS]; netlist::netlist_time m_inc; |