EPhysics: small/trivial function return fix

This patch fix a compilation warning by _ephysics_world_contact_processed_cb
not returning. Bullet doesn't care about what is returned, so this
is just a compilation warning fix.


Patch by: Leandro Dorileo <dorileo@profusion.mobi>



SVN revision: 74499
This commit is contained in:
Leandro Dorileo 2012-07-27 14:49:20 +00:00 committed by Bruno Dilly
parent ba55257c64
commit 34734a4a72
1 changed files with 2 additions and 0 deletions

View File

@ -125,6 +125,8 @@ _ephysics_world_contact_processed_cb(btManifoldPoint &cp, void *b0, void *b1)
ephysics_body_contact_processed(body_0, body_1);
ephysics_body_contact_processed(body_1, body_0);
return EINA_TRUE;
}
static void