From 9ccaca7f1a4a431ee30fbc4629d063150a5cf979 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Tue, 13 Aug 2024 17:01:55 +0100 Subject: [PATCH] Minor style change --- vendor/box2d/box2d.odin | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vendor/box2d/box2d.odin b/vendor/box2d/box2d.odin index c7508312c..bc2e63c24 100644 --- a/vendor/box2d/box2d.odin +++ b/vendor/box2d/box2d.odin @@ -1288,7 +1288,7 @@ foreign lib { PrismaticJoint_GetUpperLimit :: proc(jointId: JointId) -> f32 --- // Set the prismatic joint limits - PrismaticJoint_SetLimits :: proc(jointId: JointId, lower: f32, upper: f32) --- + PrismaticJoint_SetLimits :: proc(jointId: JointId, lower, upper: f32) --- // Enable/disable a prismatic joint motor PrismaticJoint_EnableMotor :: proc(jointId: JointId, enableMotor: bool) --- @@ -1355,7 +1355,7 @@ foreign lib { RevoluteJoint_GetUpperLimit :: proc(jointId: JointId) -> f32 --- // Set the revolute joint limits in radians - RevoluteJoint_SetLimits :: proc(jointId: JointId, lower: f32, upper: f32) --- + RevoluteJoint_SetLimits :: proc(jointId: JointId, lower, upper: f32) --- // Enable/disable a revolute joint motor RevoluteJoint_EnableMotor :: proc(jointId: JointId, enableMotor: bool) --- @@ -1462,7 +1462,7 @@ foreign lib { WheelJoint_GetUpperLimit :: proc(jointId: JointId) -> f32 --- // Set the wheel joint limits - WheelJoint_SetLimits :: proc(jointId: JointId, lower: f32, upper: f32) --- + WheelJoint_SetLimits :: proc(jointId: JointId, lower, upper: f32) --- // Enable/disable the wheel joint motor WheelJoint_EnableMotor :: proc(jointId: JointId, enableMotor: bool) ---