Fix regression main_menu_script setting not working any longer
parent
7b3602bab3
commit
9ffa88b558
|
@ -23,7 +23,12 @@ dofile(commonpath.."misc_helpers.lua")
|
|||
if INIT == "game" then
|
||||
dofile(gamepath.."init.lua")
|
||||
elseif INIT == "mainmenu" then
|
||||
dofile(core.get_mainmenu_path()..DIR_DELIM.."init.lua")
|
||||
local mainmenuscript = core.setting_get("main_menu_script")
|
||||
if mainmenuscript ~= nil and mainmenuscript ~= "" then
|
||||
dofile(mainmenuscript)
|
||||
else
|
||||
dofile(core.get_mainmenu_path()..DIR_DELIM.."init.lua")
|
||||
end
|
||||
elseif INIT == "async" then
|
||||
dofile(asyncpath.."init.lua")
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue