From e66c97c69a0e9a4caad8d422220ca3511369e3c5 Mon Sep 17 00:00:00 2001 From: Brennen Murphy Date: Fri, 14 Jul 2023 11:11:50 -0400 Subject: [PATCH] Used proper defined name --- core/systemctrl/src/exitgame.c | 2 +- extras/menus/xMenu/src/menu.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/systemctrl/src/exitgame.c b/core/systemctrl/src/exitgame.c index 77e5765ab..2952d67f5 100644 --- a/core/systemctrl/src/exitgame.c +++ b/core/systemctrl/src/exitgame.c @@ -88,7 +88,7 @@ void xbootLauncher() strcpy(path, ark_config->arkpath); if (ark_config->recovery) strcat(path, ARK_RECOVERY); else if (ark_config->launcher[0]) strcat(path, ark_config->launcher); - else strcat(path, "XBOOT.PBP"); + else strcat(path, ARK_XMENU); // Clear Memory memset(¶m, 0, sizeof(param)); diff --git a/extras/menus/xMenu/src/menu.cpp b/extras/menus/xMenu/src/menu.cpp index 3ebd16514..dcabdee76 100644 --- a/extras/menus/xMenu/src/menu.cpp +++ b/extras/menus/xMenu/src/menu.cpp @@ -239,7 +239,7 @@ void Menu::rebootMenu(){ char path[256]; strcpy(path, ark_config->arkpath); //strcat(path, ark_config->launcher); - strcat(path, "XBOOT.PBP"); + strcat(path, ARK_XMENU); int runlevel = 0x141;