summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-02-12 21:33:43 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-02-12 21:33:43 -0500
commitffbfc3c09954977da9aeecf8af0bb933c338a44d (patch)
tree189f41f0942c0e904695f40096e3e0fdab59e5b8
parent6f35b941d5bb893ea27658880c867a15434b701a (diff)
audio/harddriv.cpp: A little less logging (nw)
-rw-r--r--src/mame/audio/harddriv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/audio/harddriv.cpp b/src/mame/audio/harddriv.cpp
index 3759f137c0e..ea73c5cfd18 100644
--- a/src/mame/audio/harddriv.cpp
+++ b/src/mame/audio/harddriv.cpp
@@ -179,7 +179,7 @@ READ16_MEMBER(harddriv_sound_board_device::hdsnd68k_status_r)
// D14 = 'Sound Flag'
// D13 = Test Switch
// D12 = 5220 Ready Flag (0=Ready)
- logerror("%s:hdsnd68k_status_r(%04X)\n", machine().describe_context(), offset);
+ //logerror("%s:hdsnd68k_status_r(%04X)\n", machine().describe_context(), offset);
return (m_mainflag << 15) | (m_soundflag << 14) | 0x2000 | 0;//((ioport("IN0")->read() & 0x0020) << 8) | 0;
}