mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-15 00:27:31 +00:00
HPL1: Fix incorrect declarations
This commit is contained in:
parent
ee18f37849
commit
fa564564e7
@ -101,10 +101,10 @@ public:
|
||||
static void SetUseCallback(bool abX) { mbUseCallback = abX; }
|
||||
|
||||
private:
|
||||
static int BuoyancyPlaneCallback(const int alCollisionID, void *apContext,
|
||||
static int BuoyancyPlaneCallback(const int32 alCollisionID, void *apContext,
|
||||
const float *afGlobalSpaceMatrix, float *afGlobalSpacePlane);
|
||||
static void OnTransformCallback(const NewtonBody *apBody, const dFloat *apMatrix, int);
|
||||
static void OnUpdateCallback(NewtonBody *apBody, float, int);
|
||||
static void OnTransformCallback(const NewtonBody *apBody, const dFloat *apMatrix, int32);
|
||||
static void OnUpdateCallback(NewtonBody *apBody, float, int32);
|
||||
|
||||
NewtonBody *mpNewtonBody;
|
||||
NewtonWorld *mpNewtonWorld;
|
||||
|
@ -62,8 +62,8 @@ private:
|
||||
float Combine(ePhysicsMaterialCombMode aMode, float afX, float afY);
|
||||
|
||||
static int BeginContactCallback(const NewtonMaterial *material,
|
||||
const NewtonBody *apBody1, const NewtonBody *apBody2, int);
|
||||
static void ProcessContactCallback(const NewtonJoint *joint, float, int);
|
||||
const NewtonBody *apBody1, const NewtonBody *apBody2, int32);
|
||||
static void ProcessContactCallback(const NewtonJoint *joint, float, int32);
|
||||
|
||||
NewtonWorld *mpNewtonWorld;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user