cvs.cpp: popmessage in some games only appears with VERBOSE=1 now

This commit is contained in:
system11b 2016-12-26 23:05:15 +00:00
parent 92820ea460
commit 897e3eeca9

View File

@ -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;
}