mirror of https://github.com/PrimeDecomp/prime.git
Fix build
This commit is contained in:
parent
5bc8675e2c
commit
dafebc18c0
|
@ -58,8 +58,8 @@ public:
|
||||||
const CActorParameters& params, TUniqueId nextDrawNode);
|
const CActorParameters& params, TUniqueId nextDrawNode);
|
||||||
~CActor() override;
|
~CActor() override;
|
||||||
|
|
||||||
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId uid, CStateManager& mgr);
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId uid, CStateManager& mgr) override;
|
||||||
void SetActive(const bool active);
|
void SetActive(const bool active) override;
|
||||||
|
|
||||||
virtual void PreRender(CStateManager&, const CFrustumPlanes&);
|
virtual void PreRender(CStateManager&, const CFrustumPlanes&);
|
||||||
virtual void AddToRenderer(const CFrustumPlanes&, const CStateManager&) const;
|
virtual void AddToRenderer(const CFrustumPlanes&, const CStateManager&) const;
|
||||||
|
|
|
@ -188,7 +188,7 @@ void CScriptPlatform::DecayRiders(rstl::vector< SRiders >& riders, float dt, CSt
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: minor regswap
|
// TODO: minor regswap
|
||||||
void CScriptPlatform::MoveRiders(CStateManager& mgr, float dt, nbdbool active,
|
void CScriptPlatform::MoveRiders(CStateManager& mgr, float dt, bool active,
|
||||||
rstl::vector< SRiders >& riders,
|
rstl::vector< SRiders >& riders,
|
||||||
rstl::vector< SRiders >& collidedRiders, const CTransform4f& oldXf,
|
rstl::vector< SRiders >& collidedRiders, const CTransform4f& oldXf,
|
||||||
const CTransform4f& newXf, const CVector3f& dragDelta,
|
const CTransform4f& newXf, const CVector3f& dragDelta,
|
||||||
|
|
Loading…
Reference in New Issue