diff --git a/src/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/ChannelF.IVideoProvider.cs b/src/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/ChannelF.IVideoProvider.cs index a5629806b5..605ca33a0a 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/ChannelF.IVideoProvider.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/ChannelF.IVideoProvider.cs @@ -125,12 +125,8 @@ namespace BizHawk.Emulation.Cores.Consoles.ChannelF private static double GetVerticalModifier(int bufferWidth, int bufferHeight, double targetAspectRatio) { - // Calculate the current aspect ratio double currentAspectRatio = (double)bufferWidth / bufferHeight; - - // Calculate the vertical modifier needed to achieve the target aspect ratio double verticalModifier = currentAspectRatio / targetAspectRatio; - return verticalModifier; }