svn-id: r14569
This commit is contained in:
Travis Howell 2004-08-13 01:02:24 +00:00
parent 3fe739efb2
commit 47c04ea4f7

View File

@ -53,10 +53,11 @@ void ScummEngine::unkMessage1(const byte *msg) {
// Sam and Max uses a caching system, printing empty messages
// and setting VAR_V6_SOUNDMODE beforehand. See patch 609791.
if (_gameId == GID_SAMNMAX && VAR(VAR_V6_SOUNDMODE) != 2)
if (_gameId == GID_SAMNMAX)
channel = VAR(VAR_V6_SOUNDMODE);
_sound->talkSound(a, b, 1, channel);
if (channel != 2)
_sound->talkSound(a, b, 1, channel);
}
}