From 0a7dd227b8296446d743aa9c5b32fb2d0ab72881 Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Thu, 28 Aug 2003 10:10:32 +0000 Subject: revert previous broken commit which didn't logically make sense as it was checking for negative on an unsigned number, and would have broken several things if it compiled svn-id: r9889 --- scumm/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scumm') diff --git a/scumm/string.cpp b/scumm/string.cpp index 75dd18b0a7..2697455bf3 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -310,7 +310,7 @@ void Scumm::CHARSET_1() { if (_version <= 3) { _charset->printChar(c); } else { - if (_noSubtitles && (_haveMsg == 0xFE || _sound->_talkChannelHandle >= 0)) { + if (_noSubtitles && (_haveMsg == 0xFE || _sound->_talkChannelHandle)) { // Subtitles are turned off, and there is a voice version // of this message -> don't print it. } else -- cgit v1.2.3