diff options
author | pommicket <pommicket@gmail.com> | 2022-07-29 12:18:10 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-07-29 12:18:10 -0400 |
commit | 8b970f5b47ac14d6e55b0caf5cfe7890ca17d23b (patch) | |
tree | d9031142955670a84492448ca88108fac061626c /math.c | |
parent | d424dcbfd9586d5cf587e2cfb643e307b9d5e1bd (diff) |
fix syntax highlighting and spacing for weird characters
Diffstat (limited to 'math.c')
-rw-r--r-- | math.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -765,7 +765,7 @@ static v4 color_rgba_to_hsva(v4 rgba) { float H = 0; if (C == 0) H = 0; - if (M == R) + else if (M == R) H = fmodf((G - B) / C, 6); else if (M == G) H = (B - R) / C + 2; |