Fixed MSVC warning
svn-id: r8449
This commit is contained in:
parent
aabfc254c1
commit
d7b7abd93f
1 changed files with 1 additions and 1 deletions
|
@ -535,7 +535,7 @@ void Scumm::writeVar(uint var, int value) {
|
|||
|
||||
// stay in sync with loom cd subtitle var
|
||||
if (_gameId == GID_LOOM256 && var == VAR_NOSUBTITLES && (value == 0 || value == 1))
|
||||
_noSubtitles = value;
|
||||
_noSubtitles = (value != 0);
|
||||
|
||||
if ((_varwatch == (int)var) || (_varwatch == 0)) {
|
||||
if (vm.slot[_currentScript].number < 100)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue