summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/cvs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/cvs.cpp b/src/mame/drivers/cvs.cpp
index 6427f13f64f..d331ed50507 100644
--- a/src/mame/drivers/cvs.cpp
+++ b/src/mame/drivers/cvs.cpp
@@ -347,7 +347,7 @@ WRITE8_MEMBER(cvs_state::cvs_unknown_w)
if (data != m_dac3_state[offset])
{
- if (offset != 2)
+ if (VERBOSE && offset != 2)
popmessage("Unknown: %02x %02x\n", offset, data);
m_dac3_state[offset] = data;
}