From dbb106e4074597e8856b0907d9d0d6a331ee0d40 Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Mon, 3 Jun 2024 18:42:10 +0200 Subject: [PATCH] fix O2 platform frame rates rounding fixes 1cf5af83ddb4516a844a365d0a1bb10cee514261 --- src/BizHawk.Client.Common/movie/PlatformFrameRates.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/PlatformFrameRates.cs b/src/BizHawk.Client.Common/movie/PlatformFrameRates.cs index 773f7d8785..15fa7db059 100644 --- a/src/BizHawk.Client.Common/movie/PlatformFrameRates.cs +++ b/src/BizHawk.Client.Common/movie/PlatformFrameRates.cs @@ -74,8 +74,8 @@ namespace BizHawk.Client.Common ["AmstradCPC_PAL"] = 50.08012820512821, ["UZE"] = 60.016319939602, ["VEC"] = 50, - ["O2"] = 89478485 / 1495643, // 59.8260982065907439141559850846 - ["O2_PAL"] = 89478485 / 1800319, // 49.70146124103561646574857011 + ["O2"] = 89478485.0 / 1495643, // 59.8260982065907439141559850846 + ["O2_PAL"] = 89478485.0 / 1800319, // 49.70146124103561646574857011 ["TIC80"] = 60, };