Skip to content
Permalink
Browse files

TITANIC: Fix warning and stray semicolon

  • Loading branch information
sev- committed Mar 25, 2017
1 parent 87d894f commit 31d6dee5ed5acaacac25d33db10394a678a9ecfe
Showing with 1 addition and 1 deletion.
  1. +1 −1 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();

0 comments on commit 31d6dee

Please sign in to comment.
You can’t perform that action at this time.