Skip to content

Commit 98ff995

Browse files
committed
appease ci
1 parent 17440ec commit 98ff995

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-module/rainbowio/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ int32_t colorwheel(mp_float_t pos) {
4242
shift2 = 0;
4343
}
4444
int p = (int)(pos * 3);
45-
p = (p<256) ? p : 255;
45+
p = (p < 256) ? p : 255;
4646
return (p << shift1) | ((255 - p) << shift2);
4747
}

0 commit comments

Comments
 (0)