Add newline

Prevent overlapping speech in dig.

svn-id: r12530
This commit is contained in:
Travis Howell 2004-01-20 00:21:24 +00:00
parent 698eefae58
commit b8e739ae3d
2 changed files with 5 additions and 3 deletions

View File

@ -213,4 +213,4 @@ extern const imuseFtNames _ftSeqNames[];
} // End of namespace Scumm
#endif
#endif

View File

@ -465,9 +465,11 @@ void Sound::startTalkSound(uint32 offset, uint32 b, int mode, PlayingSoundHandle
if (_vm->_gameId == GID_CMI) {
_sfxMode |= mode;
return;
}
} else if (_vm->_gameId == GID_DIG) {
_sfxMode |= mode;
if (!(_vm->_features & GF_DEMO))
return;
if ((_vm->_gameId == GID_DIG) && (_vm->_features & GF_DEMO)) {
char filename[30];
char roomname[10];