aboutsummaryrefslogtreecommitdiff
path: root/Client/Source/Phy2DLite/Joint.h
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Source/Phy2DLite/Joint.h')
-rw-r--r--Client/Source/Phy2DLite/Joint.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Client/Source/Phy2DLite/Joint.h b/Client/Source/Phy2DLite/Joint.h
index f88e287..c65bf0b 100644
--- a/Client/Source/Phy2DLite/Joint.h
+++ b/Client/Source/Phy2DLite/Joint.h
@@ -18,7 +18,7 @@ namespace Phy2D
void Set(Body* body1, Body* body2, const Vec2& anchor);
- void PreStep(number inv_dt);
+ void PreStep(fixed inv_dt);
void ApplyImpulse();
Mat22 M;
@@ -28,8 +28,8 @@ namespace Phy2D
Vec2 P; // accumulated impulse
Body* body1;
Body* body2;
- number biasFactor;
- number softness;
+ fixed biasFactor;
+ fixed softness;
};
}