about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--main.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.lua b/main.lua
index dff23c0..1ba8e6d 100644
--- a/main.lua
+++ b/main.lua
@@ -321,7 +321,9 @@ function love.quit()
   local settings = {
     x=x, y=y, displayindex=displayindex,
     width=App.screen.width, height=App.screen.height,
-    font_height=Font_height, filename=Filename, screen_top=Screen_top1, cursor=Cursor1}
+    font_height=Font_height,
+    filename=love.filesystem.getWorkingDirectory()..'/'..Filename,  -- '/' should work even on Windows
+    screen_top=Screen_top1, cursor=Cursor1}
   love.filesystem.write('config', json.encode(settings))
 end