diff options
author | Eugene Sandulenko | 2017-03-25 23:41:02 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2017-03-25 23:41:02 +0100 |
commit | 31d6dee5ed5acaacac25d33db10394a678a9ecfe (patch) | |
tree | be674cac1a3f60c2485ce68f1de7fecc738fe2b2 /engines | |
parent | 87d894f6f2fb0a230d51669531c2ac69bce6958f (diff) | |
download | scummvm-rg350-31d6dee5ed5acaacac25d33db10394a678a9ecfe.tar.gz scummvm-rg350-31d6dee5ed5acaacac25d33db10394a678a9ecfe.tar.bz2 scummvm-rg350-31d6dee5ed5acaacac25d33db10394a678a9ecfe.zip |
TITANIC: Fix warning and stray semicolon
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/star_control/star_points2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/star_control/star_points2.cpp b/engines/titanic/star_control/star_points2.cpp index cbb4c0dbbd..4d77733830 100644 --- a/engines/titanic/star_control/star_points2.cpp +++ b/engines/titanic/star_control/star_points2.cpp @@ -96,7 +96,7 @@ void CStarPoints2::draw(CSurfaceArea *surface, CStarControlSub12 *sub12) { vector3._x = sub6._row3._z * se._v2._y + sub6._row3._x * se._v2._z + sub6._row1._x * se._v2._x + sub6._vector._y; vector3._y = sub6._row2._y * se._v2._y + sub6._row3._y * se._v2._z - + sub6._row1._y * se._v2._x; + sub6._vector._y; + + sub6._row1._y * se._v2._x + sub6._vector._y; if (vector1._z > threshold && vector3._z > threshold) { vector2.clear(); |