summaryrefslogtreecommitdiffhomepage
path: root/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.lua b/main.lua
index 01c46bb..7e3d71e 100644
--- a/main.lua
+++ b/main.lua
@@ -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 = {}