diff options
Diffstat (limited to 'run.lua')
-rw-r--r-- | run.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run.lua b/run.lua index c8d27e9..6e91c3f 100644 --- a/run.lua +++ b/run.lua @@ -163,7 +163,7 @@ end function absolutize(path) if is_relative_path(path) then - return love.filesystem.getWorkingDirectory()..'/'..path -- '/' should work even on Windows + return App.current_dir..path end return path end |