From 1d338877fc9fefc5cfa207ace58cf1f441985c60 Mon Sep 17 00:00:00 2001 From: Ian Curtis Date: Thu, 3 Aug 2017 11:05:04 +0000 Subject: [PATCH] cosmetic --- Src/Graphics/New3D/R3DShader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/Graphics/New3D/R3DShader.cpp b/Src/Graphics/New3D/R3DShader.cpp index 9b3d761..c58cf86 100644 --- a/Src/Graphics/New3D/R3DShader.cpp +++ b/Src/Graphics/New3D/R3DShader.cpp @@ -141,7 +141,7 @@ void main() // Need a minimum clamp lightIntensity = max(lightIntensity,0.0); - // Upper clamp is optional, so games will drive brightness beyond 100% + // Upper clamp is optional, some games will drive brightness beyond 100% if(intensityClamp) { lightIntensity = min(lightIntensity,1.0); }