From cca991e78b8ba9c5f91895b3dfce565c02f29c12 Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Thu, 28 Nov 2024 21:25:36 +0000 Subject: [PATCH] Use safer TV type (potentially still struggles with composite output). --- src/menu/menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/menu/menu.c b/src/menu/menu.c index 2c7141b6..4a74d3aa 100644 --- a/src/menu/menu.c +++ b/src/menu/menu.c @@ -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; } }