Change back unintentionally changed comment

This commit is contained in:
sunshineinabox 2024-04-10 20:33:29 -07:00 committed by Emmanuel Hansen
parent e6b8c43281
commit 3902bbe60c

View file

@ -39,7 +39,10 @@ namespace Ryujinx.Ava.UI.Windows
{
var color = GetColor(image);
// Luminosity calculation
// We don't want colors that are too dark.
// If the color is too dark, make it brighter by reducing the range
// and adding a constant color.
int luminosity = GetColorApproximateLuminosity(color.Red, color.Green, color.Blue);
if (luminosity < CutOffLuminosity)
{