diff options
Diffstat (limited to 'main.lua')
-rw-r--r-- | main.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ function love.load () -- World physics love.physics.setMeter(64) world = love.physics.newWorld(0, 9.81*64, true) - world:setCallbacks(beginContact, endContact, preSolve, postSolve) + world:setCallbacks(beginContact, endContact) -- Platforms (`Ground`) Platforms = {} |