diff options
author | Aki <nthirtyone@gmail.com> | 2016-05-14 16:55:40 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2016-05-14 16:55:40 +0200 |
commit | 25701ee54e8fbdcfd3a66fd1605f5b5b647e78a2 (patch) | |
tree | 766e16e67e8e83ac435ea7cb22c66559d0a9b5f7 /main.lua | |
parent | 20ed15b3a008fcc4f90c2bd32cc2e36e49072554 (diff) | |
download | roflnauts-25701ee54e8fbdcfd3a66fd1605f5b5b647e78a2.zip roflnauts-25701ee54e8fbdcfd3a66fd1605f5b5b647e78a2.tar.gz roflnauts-25701ee54e8fbdcfd3a66fd1605f5b5b647e78a2.tar.bz2 |
Sometimes I just hate desktop github
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 = {} |