From 1e4b7bea34f7b6529cebb12d8ed2def4100d0aff Mon Sep 17 00:00:00 2001 From: Joakim Larsson Edstrom Date: Mon, 4 Sep 2017 21:40:53 +0200 Subject: [PATCH] 68340tmu: silented some logerror spam by turning them into LOGx statements --- src/devices/machine/68340tmu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/machine/68340tmu.cpp b/src/devices/machine/68340tmu.cpp index ab4443fa818..0fb359dbddf 100644 --- a/src/devices/machine/68340tmu.cpp +++ b/src/devices/machine/68340tmu.cpp @@ -47,7 +47,7 @@ READ16_MEMBER( m68340_cpu_device::m68340_internal_timer_r ) int val = 0; int pc = space.device().safe_pc(); - logerror("%08x m68340_internal_timer_r %08x, (%08x)\n", pc, offset * 2, mem_mask); + LOGR("%08x m68340_internal_timer_r %08x, (%08x)\n", pc, offset * 2, mem_mask); int id = (offset * 2) < 0x40 ? 0 : 1; // Timer1 or Timer2 @@ -257,7 +257,7 @@ WRITE16_MEMBER( m68340_cpu_device::m68340_internal_timer_w ) } int pc = space.device().safe_pc(); - logerror("%08x m68340_internal_timer_w %08x, %08x (%08x)\n", pc, offset * 2, data, mem_mask); + LOG("%08x m68340_internal_timer_w %08x, %08x (%08x)\n", pc, offset * 2, data, mem_mask); } void m68340_timer::reset()