about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--Manual_tests.md8
-rw-r--r--main.lua6
2 files changed, 13 insertions, 1 deletions
diff --git a/Manual_tests.md b/Manual_tests.md
index 8e9a02c..690ccd9 100644
--- a/Manual_tests.md
+++ b/Manual_tests.md
@@ -23,3 +23,11 @@ Lua is dynamically typed. Tests can't patch over lack of type-checking.
 
 * Like any high-level language, it's easy to accidentally alias two non-scalar
   variables. I wish there was a way to require copy when assigning.
+
+### Todo list
+
+* Initializing settings:
+    - from previous session
+        - Filename as absolute path
+        - Filename as relative path
+    - from defaults
diff --git a/main.lua b/main.lua
index 1ba8e6d..17a19e5 100644
--- a/main.lua
+++ b/main.lua
@@ -318,11 +318,15 @@ function love.quit()
   end
   -- save some important settings
   local x,y,displayindex = love.window.getPosition()
+  local filename = Filename
+  if filename:sub(1,1) ~= '/' then
+    filename = love.filesystem.getWorkingDirectory()..'/'..filename  -- '/' should work even on Windows
+  end
   local settings = {
     x=x, y=y, displayindex=displayindex,
     width=App.screen.width, height=App.screen.height,
     font_height=Font_height,
-    filename=love.filesystem.getWorkingDirectory()..'/'..Filename,  -- '/' should work even on Windows
+    filename=filename,
     screen_top=Screen_top1, cursor=Cursor1}
   love.filesystem.write('config', json.encode(settings))
 end