diff options
author | Paul Gilbert | 2016-10-31 19:51:12 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-10-31 19:51:12 -0400 |
commit | 11cc62f4039dedd084ca3e4bb3888337133c15fb (patch) | |
tree | 5d0adc5d2d21ca794bba480e6b962a5b86eb804d | |
parent | 3185ca49571389023197c83f7539daf67f1f5f59 (diff) | |
download | scummvm-rg350-11cc62f4039dedd084ca3e4bb3888337133c15fb.tar.gz scummvm-rg350-11cc62f4039dedd084ca3e4bb3888337133c15fb.tar.bz2 scummvm-rg350-11cc62f4039dedd084ca3e4bb3888337133c15fb.zip |
TITANIC: Fix another compiler warning
-rw-r--r-- | engines/titanic/true_talk/tt_concept.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/true_talk/tt_concept.cpp b/engines/titanic/true_talk/tt_concept.cpp index b8204baab8..1f1822cbc8 100644 --- a/engines/titanic/true_talk/tt_concept.cpp +++ b/engines/titanic/true_talk/tt_concept.cpp @@ -296,7 +296,7 @@ TTconcept *TTconcept::findBy20(int val) { } bool TTconcept::isWordId(int id) const { - return this && _wordP && _wordP->_id == id; + return _wordP && _wordP->_id == id; } int TTconcept::getWordId() const { |