Compare commits

...

2 Commits

Author SHA1 Message Date
Oshisaure 9e447d51a7
Merge pull request #57 from jjdelvalle/master
Include complete path when printing screenshot info
2022-03-03 19:29:48 +00:00
JDV 4dfa234bc3 Include complete path when printing screenshot info 2022-03-03 20:27:41 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ function love.keypressed(key, scancode)
love.filesystem.remove("ss")
love.filesystem.createDirectory("ss")
end
print("Saving screenshot as "..ss_name)
print("Saving screenshot as "..love.filesystem.getSaveDirectory().."/"..ss_name)
GLOBAL_CANVAS:newImageData():encode("png", ss_name)
-- function keys are reserved
elseif string.match(scancode, "^f[1-9]$") or string.match(scancode, "^f[1-9][0-9]+$") then