Permalink
Browse files
TITANIC: Fix compiler warning
- Loading branch information
|
|
@@ -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 |
|
|
} |
|
|
|
|
|
|