Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2013-04-29 18:09:19 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-04-29 18:09:19 +0400
commit5c5ecc3465de40246469b667fb8c5eb813da34c7 (patch)
tree425c86a13331998829bbaa7fa3227e76453404da /source/blender/makesrna/intern/rna_rigidbody.c
parent903f9b98f5e5bd93938220e301b7f27d97d103aa (diff)
Usual UI messages fixes...
Diffstat (limited to 'source/blender/makesrna/intern/rna_rigidbody.c')
-rw-r--r--source/blender/makesrna/intern/rna_rigidbody.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_rigidbody.c b/source/blender/makesrna/intern/rna_rigidbody.c
index add527efada..a4e02d6e835 100644
--- a/source/blender/makesrna/intern/rna_rigidbody.c
+++ b/source/blender/makesrna/intern/rna_rigidbody.c
@@ -603,7 +603,8 @@ static void rna_RigidBodyWorld_convex_sweep_test(RigidBodyWorld *rbw, ReportList
if (rbw->physics_world != NULL && rob->physics_object != NULL) {
RB_world_convex_sweep_test(rbw->physics_world, rob->physics_object, ray_start, ray_end, r_location, r_hitpoint, r_normal, r_hit);
if (*r_hit == -2) {
- BKE_report(reports, RPT_ERROR, "A non convex collision shape was passed to the function. Use only convex collision shapes.");
+ BKE_report(reports, RPT_ERROR,
+ "A non convex collision shape was passed to the function, use only convex collision shapes");
}
}
else {