Merge pull request #1881 from system11b/S11darkw

cvs.cpp: popmessage in some games only appears with VERBOSE=1 now
This commit is contained in:
R. Belmont 2016-12-30 10:51:34 -05:00 committed by GitHub
commit d0c044320d

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