mirror of https://github.com/PrimeDecomp/prime.git
Fix building all_source and all_source_host
This commit is contained in:
parent
e83f40d9ec
commit
0ac742bdd8
|
@ -20,7 +20,7 @@ public:
|
||||||
~CGameCamera() override;
|
~CGameCamera() override;
|
||||||
void Accept(IVisitor& visitor) override;
|
void Accept(IVisitor& visitor) override;
|
||||||
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId uid, CStateManager& mgr) override;
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId uid, CStateManager& mgr) override;
|
||||||
void SetActive(uchar active) override;
|
void SetActive(const bool active) override;
|
||||||
|
|
||||||
// CGameCamera
|
// CGameCamera
|
||||||
virtual void ProcessInput(const CFinalInput&, CStateManager& mgr) = 0;
|
virtual void ProcessInput(const CFinalInput&, CStateManager& mgr) = 0;
|
||||||
|
|
|
@ -29,7 +29,9 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef _MSC_VER
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#endif
|
||||||
extern "C" int abs(int);
|
extern "C" int abs(int);
|
||||||
#include <Kyoto/Audio/g721.h>
|
#include <Kyoto/Audio/g721.h>
|
||||||
|
|
||||||
|
@ -456,4 +458,3 @@ g721_decoder(int i,
|
||||||
|
|
||||||
return (sr << 2); /* sr was 14-bit dynamic range */
|
return (sr << 2); /* sr was 14-bit dynamic range */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
CBSAttack::CBSAttack()
|
CBSAttack::CBSAttack()
|
||||||
: x4_nextState(pas::kAS_Invalid)
|
: x4_nextState(pas::kAS_Invalid)
|
||||||
// , x8_slide(CBCSlideCmd())
|
, x8_slide(pas::kSlide_Invalid, CVector3f::Zero())
|
||||||
, x20_targetPos(CVector3f::Zero())
|
, x20_targetPos(CVector3f::Zero())
|
||||||
, x2c_alignTargetPosStartTime(-1.f)
|
, x2c_alignTargetPosStartTime(-1.f)
|
||||||
, x30_alignTargetPosTime(-1.f)
|
, x30_alignTargetPosTime(-1.f)
|
||||||
|
|
Loading…
Reference in New Issue