From 0cfe6e4fc7365f3cfd6a392c35e49f2b53df394c Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Sun, 24 Nov 2024 23:04:52 +0000 Subject: [PATCH] Use mpal for 60Hz hack --- 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 7ed8d669..74989e41 100644 --- a/src/menu/menu.c +++ b/src/menu/menu.c @@ -83,8 +83,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 NTSC, so PAL console would output 60 Hz signal instead. - __boot_tvtype = TV_NTSC; + // HACK: Set TV type to MPAL, so PAL console would output 60 Hz signal instead. + __boot_tvtype = TV_MPAL; } }