From 897e3eeca95fadf862a2bb7f3e1cc81d0facd8e1 Mon Sep 17 00:00:00 2001 From: system11b Date: Mon, 26 Dec 2016 23:05:15 +0000 Subject: cvs.cpp: popmessage in some games only appears with VERBOSE=1 now --- src/mame/drivers/cvs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3