Skip to content

Commit

Permalink
Use safer TV type
Browse files Browse the repository at this point in the history
(potentially still struggles with composite output).
  • Loading branch information
networkfusion committed Nov 28, 2024
1 parent 9579f69 commit cca991e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/menu/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ static void menu_init (boot_params_t *boot_params) {
if (menu->settings.hdmi_pal60_compatibility_mode) {
tv_type = get_tv_type();
if (tv_type == TV_PAL && menu->settings.pal60_enabled) {
// HACK: Set TV type to MPAL, so PAL console would output 60 Hz signal instead.
__boot_tvtype = TV_MPAL;
// HACK: Set TV type to NTSC, so PAL console would output 60 Hz signal instead.
__boot_tvtype = TV_NTSC;
}
}

Expand Down

0 comments on commit cca991e

Please sign in to comment.