Fixed weird hack in test.c

This commit is contained in:
Aaron Helton
2017-06-22 20:14:13 -04:00
parent a1b9f70549
commit 1fc460069f

View File

@@ -62,7 +62,7 @@ int main(int argc, char **argv)
tga_set_alpha_at(img, x, y, 255);
tga_set_red_at(img, x, y, y);
tga_set_green_at(img, x, y, y);
tga_set_blue_at(img, x, y, y < 255 ? y : 255);
tga_set_blue_at(img, x, y, y);
}
}
write_tga_image(img, argv[1]);