Skip to content

Commit

Permalink
ignore ark loaders in custom launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAaronLopezGarcia committed Jul 24, 2023
1 parent 255c9df commit aafd788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extras/menus/arkMenu/src/gamemgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ void GameManager::findEboots(const char* path){
if (strcmp(dit->d_name, "..") == 0) continue; // ignore "parent dir"
if (!FIO_SO_ISDIR(dit->d_stat.st_attr)) continue; // ignore files
if (dit->d_name[0] == '.' && !common::getConf()->show_hidden) continue; // ignore hidden?
if (strcmp(dit->d_name, "NPUZ01234") == 0 || strcmp(dit->d_name, "SCPS10084") == 0 || strncmp(dit->d_name, "ARK_", 4) == 0) continue; // ignore ARK launchers
if (strcmp(dit->d_name, "NPUZ01234") == 0 || strcmp(dit->d_name, "SCPS10084") == 0 || strcmp(dit->d_name, "ARK_Loader") == 0) continue; // ignore ARK launchers

string fullpath = Eboot::fullEbootPath(path, dit->d_name);
if (fullpath == ""){
Expand Down

0 comments on commit aafd788

Please sign in to comment.