From 55b7b3e82e091906069bb60fa529239358de5f93 Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 5 Oct 2020 20:11:54 +0200 Subject: Review "aggreagate initializations" --- examples/web/physics/physac.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/web/physics') diff --git a/examples/web/physics/physac.h b/examples/web/physics/physac.h index 3fb832b..ed77a3c 100644 --- a/examples/web/physics/physac.h +++ b/examples/web/physics/physac.h @@ -391,8 +391,8 @@ PHYSACDEF PhysicsBody CreatePhysicsBodyRectangle(Vector2 pos, float width, float newBody->id = newId; newBody->enabled = true; newBody->position = pos; - newBody->velocity = (Vector2){ 0.0f }; - newBody->force = (Vector2){ 0.0f }; + newBody->velocity = (Vector2){ 0 }; + newBody->force = (Vector2){ 0 }; newBody->angularVelocity = 0.0f; newBody->torque = 0.0f; newBody->orient = 0.0f; -- cgit v1.2.3