summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--builtin/init.lua7
1 files changed, 6 insertions, 1 deletions
diff --git a/builtin/init.lua b/builtin/init.lua
index 4f55e8034..6fc1bf6d5 100644
--- a/builtin/init.lua
+++ b/builtin/init.lua
@@ -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