summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/netlist.cpp
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2020-04-25 20:50:09 +0100
committer smf- <smf-@users.noreply.github.com>2020-04-25 20:52:35 +0100
commitad819a3243094df7d35d853f2fb14cfe87d40ec6 (patch)
tree36b9245c3f7d05c853a866e31efed0b6fa2aff57 /src/devices/machine/netlist.cpp
parent2dec1d2ef08d8490ebce518a1db836d83a76bec1 (diff)
appease vs2019_clang with llvm 10.0
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;
}