summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2016-12-30 10:51:34 -0500
committer GitHub <noreply@github.com>2016-12-30 10:51:34 -0500
commitd0c044320ddfde3d4dd9a41cb13ef7e932db9072 (patch)
tree41ad3744217fcb9e34aa556c7d55252629442223
parent2f45bedc821af9036d913c7fc32609dcba2a24a9 (diff)
parent897e3eeca95fadf862a2bb7f3e1cc81d0facd8e1 (diff)
Merge pull request #1881 from system11b/S11darkw
cvs.cpp: popmessage in some games only appears with VERBOSE=1 now
-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;
}