aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/star_control/fvector.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2017-09-02 11:20:17 -0400
committerPaul Gilbert2017-09-02 11:20:17 -0400
commitba84efe4975812c07788f1c973cc82e46b8316aa (patch)
tree609f31ce50eaa9bacd9939ffec558288d51bf994 /engines/titanic/star_control/fvector.cpp
parent2518de30a4a0d9c942791ee78f29fa42ab268375 (diff)
downloadscummvm-rg350-ba84efe4975812c07788f1c973cc82e46b8316aa.tar.gz
scummvm-rg350-ba84efe4975812c07788f1c973cc82e46b8316aa.tar.bz2
scummvm-rg350-ba84efe4975812c07788f1c973cc82e46b8316aa.zip
TITANIC: Minor cleanup and warning fixes to star control
Diffstat (limited to 'engines/titanic/star_control/fvector.cpp')
-rw-r--r--engines/titanic/star_control/fvector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/star_control/fvector.cpp b/engines/titanic/star_control/fvector.cpp
index 4fd17bf883..aeee2e877b 100644
--- a/engines/titanic/star_control/fvector.cpp
+++ b/engines/titanic/star_control/fvector.cpp
@@ -103,7 +103,7 @@ float FVector::getDistance(const FVector &src) const {
return sqrt(xd * xd + yd * yd + zd * zd);
}
-FVector FVector::MatProdRowVect(const FPose &pose) const {
+FVector FVector::matProdRowVect(const FPose &pose) const {
FVector v;
v._x = pose._row2._x * _y + pose._row3._x * _z + pose._row1._x * _x + pose._vector._x;
v._y = pose._row2._y * _y + pose._row3._y * _z + pose._row1._y * _x + pose._vector._y;