From be01202c681bf4578c2b86d27cf8198361e80460 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:03:41 -0700 Subject: [PATCH] Do ChanF platform framerates slightly better --- src/BizHawk.Client.Common/movie/PlatformFrameRates.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/PlatformFrameRates.cs b/src/BizHawk.Client.Common/movie/PlatformFrameRates.cs index 9663de7c40..ed66261705 100644 --- a/src/BizHawk.Client.Common/movie/PlatformFrameRates.cs +++ b/src/BizHawk.Client.Common/movie/PlatformFrameRates.cs @@ -79,8 +79,9 @@ namespace BizHawk.Client.Common ["TIC80"] = 60, - ["ChannelF"] = 60.5307257846, // (3579545 * 8 / 7) / (256 * 264) - ["ChannelF_PAL"] = 50.0801282051, // 4000000 / (256 * 312) + ["ChannelF"] = 234375.0 / 3872.0, // (NTSCCarrier * 8 / 7) / (256 * 264) + // note: ChannelF II PAL timings might be slightly different... + ["ChannelF_PAL"] = 15625.0 / 312.0, // 4000000 / (256 * 312) }; public static double GetFrameRate(string systemId, bool pal)