summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/netlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/netlist.cpp')
-rw-r--r--src/devices/machine/netlist.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/netlist.cpp b/src/devices/machine/netlist.cpp
index 221aa138627..d0a7ab1f54b 100644
--- a/src/devices/machine/netlist.cpp
+++ b/src/devices/machine/netlist.cpp
@@ -847,7 +847,7 @@ netlist_mame_int_input_device::netlist_mame_int_input_device(const machine_confi
void netlist_mame_int_input_device::set_params(const char *param_name, const uint32_t mask, const uint32_t shift)
{
- if (LOG_DEV_CALLS) logerror("set_params\n");
+ LOGDEVCALLS("set_params\n");
m_param_name = param_name;
m_shift = shift;
m_mask = mask;
@@ -890,7 +890,7 @@ netlist_mame_logic_input_device::netlist_mame_logic_input_device(const machine_c
void netlist_mame_logic_input_device::set_params(const char *param_name, const uint32_t shift)
{
- if (LOG_DEV_CALLS) logerror("set_params\n");
+ LOGDEVCALLS("set_params\n");
m_param_name = param_name;
m_shift = shift;
}
@@ -942,7 +942,7 @@ netlist_mame_ram_pointer_device::netlist_mame_ram_pointer_device(const machine_c
void netlist_mame_ram_pointer_device::set_params(const char *param_name)
{
- if (LOG_DEV_CALLS) logerror("set_params\n");
+ LOGDEVCALLS("set_params\n");
m_param_name = param_name;
}