Add newline
Prevent overlapping speech in dig. svn-id: r12530
This commit is contained in:
parent
698eefae58
commit
b8e739ae3d
2 changed files with 5 additions and 3 deletions
|
@ -213,4 +213,4 @@ extern const imuseFtNames _ftSeqNames[];
|
||||||
|
|
||||||
} // End of namespace Scumm
|
} // End of namespace Scumm
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -465,9 +465,11 @@ void Sound::startTalkSound(uint32 offset, uint32 b, int mode, PlayingSoundHandle
|
||||||
if (_vm->_gameId == GID_CMI) {
|
if (_vm->_gameId == GID_CMI) {
|
||||||
_sfxMode |= mode;
|
_sfxMode |= mode;
|
||||||
return;
|
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 filename[30];
|
||||||
char roomname[10];
|
char roomname[10];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue