HPL1: Fix incorrect declarations

This commit is contained in:
grisenti 2023-09-06 22:29:06 +02:00
parent ee18f37849
commit fa564564e7
2 changed files with 5 additions and 5 deletions

View File

@ -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;

View File

@ -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;