[Scummvm-git-logs] scummvm master -> 11cc62f4039dedd084ca3e4bb3888337133c15fb

dreammaster dreammaster at scummvm.org
Tue Nov 1 00:51:19 CET 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
11cc62f403 TITANIC: Fix another compiler warning


Commit: 11cc62f4039dedd084ca3e4bb3888337133c15fb
    https://github.com/scummvm/scummvm/commit/11cc62f4039dedd084ca3e4bb3888337133c15fb
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2016-10-31T19:51:12-04:00

Commit Message:
TITANIC: Fix another compiler warning

Changed paths:
    engines/titanic/true_talk/tt_concept.cpp



diff --git a/engines/titanic/true_talk/tt_concept.cpp b/engines/titanic/true_talk/tt_concept.cpp
index b8204ba..1f1822c 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 {





More information about the Scummvm-git-logs mailing list