Skip to content
Permalink
Browse files

TITANIC: Fix compiler warning

  • Loading branch information
dreammaster committed Mar 21, 2017
1 parent 3593f3f commit 80c22322cb16ed701433914b68f05f421fe08ac7
@@ -216,7 +216,7 @@ int CBaseStar::baseFn2(CSurfaceArea *surfaceArea, CStarControlSub12 *sub12) {

/*------------------------------------------------------------------------*/

void CStarVector::proc1() {
void CStarVector::apply() {
_owner->addMatrixRow(_vector);
}

@@ -153,7 +153,10 @@ class CStarVector {
public:
CStarVector(CStarControlSub12 *owner, const FVector &v) : _owner(owner), _vector(v) {}

virtual void proc1();
/**
* Applies the saved vector
*/
void apply();
};

} // End of namespace Titanic
@@ -501,6 +501,9 @@ void CStarControlSub12::fn2(FVector v1, FVector v2, FVector v3) {
}

void CStarControlSub12::fn3(CStarControlSub13 *sub13, const FVector &v) {
if (_matrixRow != 0)
return;

// TODO
}

0 comments on commit 80c2232

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