Skip to content

Commit 3d94667

Browse files
committed
dont display system update data on COH-H
1 parent c43022f commit 3d94667

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main.c

+3
Original file line numberDiff line numberDiff line change
@@ -1029,13 +1029,16 @@ static void ShowDebugInfo(void)
10291029
sprintf(TextRow, "argv[%d] == \"%s\"", i, boot_argv[i]);
10301030
PrintRow(-1, TextRow);
10311031
}
1032+
// COH-H models blindy run `mc0:boot.bin`. we dont need to spend screen size telling user something that is always the same right?
1033+
#ifndef SUPPORT_SYSTEM_2X6
10321034
sprintf(TextRow, "Main System Update KELF == \"%s\"", (console_is_PSX) ? "BIEXEC-SYSTEM/xosdmain.elf" : (strchr(default_OSDSYS_path2,'/')+ 1));
10331035
PrintRow(-1, TextRow);
10341036
if ((ROMVersion < 0x230) && (ROMVersion > 0x130))
10351037
{
10361038
sprintf(TextRow, "Specific System Update KELF == \"B%cEXEC-SYSTEM/osd%03x.elf\"", rough_region, (ROMVersion+10)&~0x0F);
10371039
PrintRow(-1, TextRow);
10381040
}
1041+
#endif
10391042
sprintf(TextRow, "boot_path == \"%s\"", boot_path);
10401043
PrintRow(-1, TextRow);
10411044
sprintf(TextRow, "LaunchElfDir == \"%s\"", LaunchElfDir);

0 commit comments

Comments
 (0)