Re: "love.exe has stopped working" on Win 7 64 bit
Posted: Tue Jul 16, 2013 10:14 pm
Really? Easy to test. Remove the line with 'objects.ground.shape:getPoints()'. Alternatively, try this 0.9.0 build which has a fix in it. love.physics didn't change (all that much) so the code should work there too.
Edit: With regard to the deleted post.
Note that there are three different getPoints. PolygonShape, EdgeShape and ChainShape all have their own function for this. They all return numbers and, because of implementation specifics, these values do not have to be collected by the gc.
The default love.run creates some garbage. I think this is because it generates the C closures with love.event.poll. You're forcing it to collect with collectgarbage("collect") anyway.
If there is another issue, any information would be welcome of course.
Edit: With regard to the deleted post.
Note that there are three different getPoints. PolygonShape, EdgeShape and ChainShape all have their own function for this. They all return numbers and, because of implementation specifics, these values do not have to be collected by the gc.
The default love.run creates some garbage. I think this is because it generates the C closures with love.event.poll. You're forcing it to collect with collectgarbage("collect") anyway.
If there is another issue, any information would be welcome of course.