Skip to content

Commit

Permalink
Fixed an error in one of the examples
Browse files Browse the repository at this point in the history
  • Loading branch information
slembcke committed Dec 27, 2012
1 parent ef6dfd6 commit ce45302
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/examples/CollisionCallback.html
@@ -1,11 +1,11 @@
<pre style="text-align:left;color:#000000; background-color:#ffffff; border:solid black 1px; padding:0.5em 1em 0.5em 1em; overflow:auto;font-size:small; font-family:monospace; "><strong><span style="color:#881350;">static</span></strong> <strong><span style="color:#881350;">void</span></strong>
<span style="color:#003369;">postStepRemove</span>(cpSpace *space, cpShape *shape, <strong><span style="color:#881350;">void</span></strong> *unused)
{
<span style="color:#003369;">cpSpaceRemoveShape</span>(space, shape);
<span style="color:#003369;">cpSpaceRemoveBody</span>(space, shape-&gt;body);
<span style="color:#003369;">cpBodyFree</span>(shape-&gt;body);

<span style="color:#003369;">cpSpaceRemoveShape</span>(space, shape);
<span style="color:#003369;">cpShapeFree</span>(shape);
<span style="color:#003369;">cpBodyFree</span>(shape-&gt;body);
}

<strong><span style="color:#881350;">static</span></strong> <strong><span style="color:#881350;">int</span></strong>
Expand Down

0 comments on commit ce45302

Please sign in to comment.