diff options
| author | Andrea Catania <info@andreacatania.com> | 2018-04-12 11:02:43 +0200 |
|---|---|---|
| committer | Andrea Catania <info@andreacatania.com> | 2018-04-12 11:02:43 +0200 |
| commit | df2a626b49a4e8ead003ebefb9663c63156b4efa (patch) | |
| tree | 68273096af5208c070ba5fba7cde38dce4ed2332 | |
| parent | 5324bbb77227f80d43604c8e104419f2700d8796 (diff) | |
Fixed wrong function call
| -rw-r--r-- | modules/bullet/space_bullet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/bullet/space_bullet.cpp b/modules/bullet/space_bullet.cpp index 9a88b4692b..8450a66f65 100644 --- a/modules/bullet/space_bullet.cpp +++ b/modules/bullet/space_bullet.cpp @@ -996,7 +996,7 @@ public: } void reset() { - result_collision_objects.empty(); + result_collision_objects.clear(); } }; |