diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-07-01 13:55:43 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-07-01 13:56:17 -0700 |
commit | 53c35241fb1fbc01412e8e7899f14b3929472162 (patch) | |
tree | 20b720fc695cf183fd8e6cad9d833710ef2fd72e | |
parent | f311013200bf62d28d3a548963c1e56f7c4ca3dc (diff) | |
download | view.love-53c35241fb1fbc01412e8e7899f14b3929472162.tar.gz |
ugh, handle absolute as well as relative paths
-rw-r--r-- | Manual_tests.md | 8 | ||||
-rw-r--r-- | main.lua | 6 |
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 |