mirror of
https://github.com/linux-man/LoveFrames.git
synced 2024-11-26 05:14:21 +00:00
this method does not break relative paths
the method dir = dir:gsub("%.", "/")
This commit is contained in:
parent
e131ed8628
commit
5b72b20743
4
init.lua
4
init.lua
@ -61,7 +61,7 @@ function loveframes.load()
|
||||
require(dir .. ".debug")
|
||||
|
||||
-- replace all "." with "/" in the directory setting
|
||||
dir = dir:gsub("%.", "/")
|
||||
dir = dir:gsub("\\", "/"):gsub("(%a)%.(%a)", "%1/%2")
|
||||
loveframes.config["DIRECTORY"] = dir
|
||||
|
||||
-- create a list of gui objects, skins and templates
|
||||
@ -387,4 +387,4 @@ function loveframes.GetState()
|
||||
end
|
||||
|
||||
-- load the library
|
||||
loveframes.load()
|
||||
loveframes.load()
|
||||
|
Loading…
Reference in New Issue
Block a user