diff options
author | 2016-12-30 10:51:34 -0500 | |
---|---|---|
committer | 2016-12-30 10:51:34 -0500 | |
commit | d0c044320ddfde3d4dd9a41cb13ef7e932db9072 (patch) | |
tree | 41ad3744217fcb9e34aa556c7d55252629442223 /src | |
parent | 2f45bedc821af9036d913c7fc32609dcba2a24a9 (diff) | |
parent | 897e3eeca95fadf862a2bb7f3e1cc81d0facd8e1 (diff) |
Merge pull request #1881 from system11b/S11darkw
cvs.cpp: popmessage in some games only appears with VERBOSE=1 now
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/drivers/cvs.cpp | 2 |
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; } |