yoshinoToylogic / bulletsharp

Automatically exported from code.google.com/p/bulletsharp
MIT License
0 stars 0 forks source link

DynamicsWorld::RemoveAction does not work (fix included) #51

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
void DynamicsWorld::RemoveAction(IActionInterface^ actionInterface)
{
  if (_actions) {
    // No shapes have been added
    return;
  }
  _actions->Remove(actionInterface);
...

There should be:
if(_actions == nullptr)

Original issue reported on code.google.com by ondrej.p...@keenswh.com on 30 Apr 2013 at 1:56

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r510.

Original comment by andres.traks on 30 Apr 2013 at 3:01

GoogleCodeExporter commented 8 years ago
Indeed. Thanks!

Original comment by andres.traks on 30 Apr 2013 at 3:01