diff options
author | Aki <nthirtyone@gmail.com> | 2018-04-07 18:29:50 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2018-04-07 18:29:50 +0200 |
commit | 517625861535f76f1dcb992fff76d23fe4239f7c (patch) | |
tree | c8090826981f8cb7358a32a4602c9bd915855f52 /not | |
parent | a12f063e7f759a4727c6b654140a8acaaa8746f8 (diff) | |
download | roflnauts-517625861535f76f1dcb992fff76d23fe4239f7c.zip roflnauts-517625861535f76f1dcb992fff76d23fe4239f7c.tar.gz roflnauts-517625861535f76f1dcb992fff76d23fe4239f7c.tar.bz2 |
Replaced deprecated filesystem functions
Diffstat (limited to 'not')
-rw-r--r-- | not/Settings.lua | 2 |
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") |