aboutsummaryrefslogtreecommitdiff
path: root/pgm.c
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2020-03-10 08:55:59 +0100
committerJulian T <julian@jtle.dk>2020-03-10 08:55:59 +0100
commit6ee08c8370f578e59dd4c6bb5f542b469f0d3748 (patch)
tree05d6b084911602e92b6a7c89c4858b2906259d89 /pgm.c
parent1f61a690ac1c1ec1b9b15b358925abbd29c487c6 (diff)
Fixed color_set
Diffstat (limited to 'pgm.c')
-rw-r--r--pgm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pgm.c b/pgm.c
index 654f4b7..a1d3124 100644
--- a/pgm.c
+++ b/pgm.c
@@ -15,7 +15,7 @@ int pgm_write_pixel(FILE *fp, color_t *c)
return fprintf(fp, "%.0lf %.0lf %.0lf\n", c->r * COLOR_MAX, c->g * COLOR_MAX, c->b * COLOR_MAX);
}
-color_t *color_set(color_t *c, uint8_t r, uint8_t g, uint8_t b)
+color_t *color_set(color_t *c, COORD_T r, COORD_T g, COORD_T b)
{
if (!c) {
c = (color_t *) malloc(sizeof(color_t));