Skip to content

Commit

Permalink
Changed variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
sauraen committed Jul 24, 2024
1 parent 7c3ae76 commit ef5c36f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fast64_internal/utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -1322,9 +1322,9 @@ def gammaCorrect(linearColor):


def s_rgb_alpha_1_tuple(linearColor):
correct = gammaCorrect(linearColor)
correct.append(1.0)
return tuple(c for c in correct)
s_rgb = gammaCorrect(linearColor)
s_rgb.append(1.0)
return tuple(s for s in s_rgb)


def gammaCorrectValue(linearValue):
Expand Down

0 comments on commit ef5c36f

Please sign in to comment.