diff --git a/Source/Core/Core/Config/GraphicsSettings.cpp b/Source/Core/Core/Config/GraphicsSettings.cpp index fb37c60ffe..37466e63cb 100644 --- a/Source/Core/Core/Config/GraphicsSettings.cpp +++ b/Source/Core/Core/Config/GraphicsSettings.cpp @@ -153,7 +153,7 @@ const Info GFX_CC_SDR_DISPLAY_GAMMA_SRGB{ const Info GFX_CC_SDR_DISPLAY_CUSTOM_GAMMA{ {System::GFX, "ColorCorrection", "SDRDisplayCustomGamma"}, 2.2f}; const Info GFX_CC_HDR_PAPER_WHITE_NITS{{System::GFX, "ColorCorrection", "HDRPaperWhiteNits"}, - 200.f}; + 203.f}; // Graphics.Stereoscopy diff --git a/Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp b/Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp index 2dbd10d2da..082e5dcc90 100644 --- a/Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp @@ -51,7 +51,7 @@ void ColorCorrectionConfigWindow::Create() "Controls the base luminance of a paper white surface in nits. Useful for adjusting to " "different environmental lighting conditions when using a HDR display.

HDR output is " "required for this setting to take effect.

If unsure, leave this at " - "200."); + "203."); // Color Space: diff --git a/Source/Core/VideoCommon/VideoConfig.h b/Source/Core/VideoCommon/VideoConfig.h index 5e315fbcca..0cff6e7c66 100644 --- a/Source/Core/VideoCommon/VideoConfig.h +++ b/Source/Core/VideoCommon/VideoConfig.h @@ -142,8 +142,9 @@ struct VideoConfig final float fSDRDisplayCustomGamma = 2.2f; // HDR: - // 200 is a good default value that matches the brightness of many SDR screens - float fHDRPaperWhiteNits = 200.f; + // 203 is a good default value that matches the brightness of many SDR screens. + // It's also the value recommended by the ITU. + float fHDRPaperWhiteNits = 203.f; } color_correction; // Information