[ChannelFHawk] Unnecessary comments

This commit is contained in:
Asnivor 2024-09-06 19:13:57 +01:00
parent de698f05a7
commit f826da6286
1 changed files with 0 additions and 4 deletions

View File

@ -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;
}