Changed file management to native lua instead of love.filesystem

This commit is contained in:
bizcochito
2022-02-08 10:23:42 +01:00
parent e7aa34d5c2
commit ef58a6e383
2 changed files with 19 additions and 19 deletions

View File

@@ -94,5 +94,5 @@ function logPrint(string)
end
function logWrite(string)
if logging then love.filesystem.append(logFile, string.."\n") end
if logging then logFile:write(string.."\n") end
end