Skip to content

Commit

Permalink
dont display system update data on COH-H
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps committed Sep 10, 2024
1 parent c43022f commit 3d94667
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1029,13 +1029,16 @@ static void ShowDebugInfo(void)
sprintf(TextRow, "argv[%d] == \"%s\"", i, boot_argv[i]);
PrintRow(-1, TextRow);
}
// COH-H models blindy run `mc0:boot.bin`. we dont need to spend screen size telling user something that is always the same right?
#ifndef SUPPORT_SYSTEM_2X6
sprintf(TextRow, "Main System Update KELF == \"%s\"", (console_is_PSX) ? "BIEXEC-SYSTEM/xosdmain.elf" : (strchr(default_OSDSYS_path2,'/')+ 1));
PrintRow(-1, TextRow);
if ((ROMVersion < 0x230) && (ROMVersion > 0x130))
{
sprintf(TextRow, "Specific System Update KELF == \"B%cEXEC-SYSTEM/osd%03x.elf\"", rough_region, (ROMVersion+10)&~0x0F);
PrintRow(-1, TextRow);
}
#endif
sprintf(TextRow, "boot_path == \"%s\"", boot_path);
PrintRow(-1, TextRow);
sprintf(TextRow, "LaunchElfDir == \"%s\"", LaunchElfDir);
Expand Down

0 comments on commit 3d94667

Please sign in to comment.