diff options
-rw-r--r-- | scumm/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp index 705fde679e..9a9ffd72a4 100644 --- a/scumm/script.cpp +++ b/scumm/script.cpp @@ -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) |