Changed the SearchOrder argument of love.filesystem.setIdentity and love.filesystem.mount to a boolean (append) instead of an enum

This commit is contained in:
Alex Szpakowski
2013-10-30 17:05:46 -03:00
parent 95e1861f35
commit 8cc5364d15
5 changed files with 17 additions and 65 deletions
+2 -2
View File
@@ -312,7 +312,7 @@ function love.init()
},
console = false, -- Only relevant for windows.
identity = false,
identityorder = "first",
appendidentity = false,
}
-- If config file exists, load it and allow it to update config table.
@@ -395,7 +395,7 @@ function love.init()
if love.filesystem then
love.filesystem.setFused(is_fused_game)
love.filesystem.setIdentity(c.identity or love.filesystem.getIdentity(), c.identityorder)
love.filesystem.setIdentity(c.identity or love.filesystem.getIdentity(), c.appendidentity)
if love.filesystem.exists("main.lua") then
require("main")
end