solved problem where log had all in 1 line

This commit is contained in:
bizcochito 2022-02-07 11:40:59 +01:00
parent 19c5487789
commit 3f5cc2e111
1 changed files with 1 additions and 1 deletions

View File

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