Skip to content

Commit

Permalink
Used proper defined name
Browse files Browse the repository at this point in the history
  • Loading branch information
krazynez committed Jul 14, 2023
1 parent 66dc378 commit e66c97c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/systemctrl/src/exitgame.c
Original file line number Diff line number Diff line change
Expand Up @@ -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(&param, 0, sizeof(param));
Expand Down
2 changes: 1 addition & 1 deletion extras/menus/xMenu/src/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit e66c97c

Please sign in to comment.