From 5bd2bdd3378c01fdfea0d73df78218ca344f9c95 Mon Sep 17 00:00:00 2001 From: arbee Date: Fri, 16 Dec 2022 22:26:57 -0500 Subject: macrtc.cpp: return seconds update logging to LOG_GENERAL. [R. Belmont] --- src/mame/apple/macrtc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/apple/macrtc.cpp b/src/mame/apple/macrtc.cpp index ad241445610..8abe1e6fba7 100644 --- a/src/mame/apple/macrtc.cpp +++ b/src/mame/apple/macrtc.cpp @@ -182,7 +182,7 @@ void rtc3430042_device::rtc_clock_updated(int year, int month, int day, int day_ seconds = difftime(mktime(&cur_time), mktime(&mac_reference)); } - LOGMASKED(LOG_COMMANDS, "second count 0x%lX\n", (unsigned long) seconds); + LOGMASKED(LOG_GENERAL, "second count 0x%lX\n", (unsigned long) seconds); m_seconds[0] = seconds & 0xff; m_seconds[1] = (seconds >> 8) & 0xff; -- cgit v1.2.3