Skip to content

Commit

Permalink
[Sophie1] Fix off
Browse files Browse the repository at this point in the history
  • Loading branch information
marat569 committed Jan 11, 2025
1 parent 6d8ea35 commit b2c8f51
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/games/sophie1/tonemapper.hlsl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ float3 applyUserTonemap(float3 untonemapped) {
float3 outputColor;

if (injectedData.toneMapType == 0.f) {
outputColor = max(0, untonemapped); // clamps to 709/no negative colors for the vanilla tonemapper
outputColor = saturate(untonemapped);
} else {
outputColor = untonemapped;
Expand Down

0 comments on commit b2c8f51

Please sign in to comment.