summaryrefslogtreecommitdiffhomepage
path: root/not
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2018-04-07 18:29:50 +0200
committerAki <nthirtyone@gmail.com>2018-04-07 18:29:50 +0200
commit517625861535f76f1dcb992fff76d23fe4239f7c (patch)
treec8090826981f8cb7358a32a4602c9bd915855f52 /not
parenta12f063e7f759a4727c6b654140a8acaaa8746f8 (diff)
downloadroflnauts-517625861535f76f1dcb992fff76d23fe4239f7c.zip
roflnauts-517625861535f76f1dcb992fff76d23fe4239f7c.tar.gz
roflnauts-517625861535f76f1dcb992fff76d23fe4239f7c.tar.bz2
Replaced deprecated filesystem functions
Diffstat (limited to 'not')
-rw-r--r--not/Settings.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/not/Settings.lua b/not/Settings.lua
index ca429eb..f4790b3 100644
--- a/not/Settings.lua
+++ b/not/Settings.lua
@@ -10,7 +10,7 @@ local function convertToNew (old)
end
local function filePrepare ()
- if not love.filesystem.exists("settings") then
+ if not love.filesystem.getInfo("settings") then
local def = love.filesystem.newFile("settings.default")
local new = love.filesystem.newFile("settings")
new:open("w") def:open("r")