Cleanup: move comments onto own lines to avoid breaking lines

This commit is contained in:
2019-07-02 22:17:22 +10:00
parent b708917d94
commit 163996b681
22 changed files with 100 additions and 73 deletions

View File

@@ -242,9 +242,9 @@ static void checker_board_color_fill(
}
for (y = offset; y < height + offset; y++) {
/* Use a number lower then 1.0 else its too bright. */
hsv[2] = 0.1 + (y * (0.4 / total_height));
hsv[2] = 0.1 +
(y * (0.4 / total_height)); /* use a number lower then 1.0 else its too bright */
for (x = 0; x < width; x++) {
hsv[0] = (float)((double)(x / hue_step) * 1.0 / width * hue_step);
hsv_to_rgb_v(hsv, rgb);