From bfb90b7eeca2b4991f8ff2cf778090cabb84a481 Mon Sep 17 00:00:00 2001 From: Filoppi Date: Wed, 28 Jun 2023 02:31:14 +0300 Subject: [PATCH] Video: increase the max HDR brightness multiplier to a more appropriate value (400 nits can be too dark in a bright room) --- Source/Core/Core/Config/GraphicsSettings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Config/GraphicsSettings.h b/Source/Core/Core/Config/GraphicsSettings.h index e24d47a39b..009b219136 100644 --- a/Source/Core/Core/Config/GraphicsSettings.h +++ b/Source/Core/Core/Config/GraphicsSettings.h @@ -117,7 +117,7 @@ static constexpr float GFX_CC_DISPLAY_GAMMA_MIN = 2.2f; static constexpr float GFX_CC_DISPLAY_GAMMA_MAX = 2.4f; static constexpr float GFX_CC_HDR_PAPER_WHITE_NITS_MIN = 80.f; -static constexpr float GFX_CC_HDR_PAPER_WHITE_NITS_MAX = 400.f; +static constexpr float GFX_CC_HDR_PAPER_WHITE_NITS_MAX = 500.f; extern const Info GFX_CC_CORRECT_COLOR_SPACE; extern const Info GFX_CC_GAME_COLOR_SPACE;