From 503e6b23592e57d27fe843a4b0fef9b16f31c10c Mon Sep 17 00:00:00 2001 From: David Phillips Date: Wed, 6 Apr 2016 10:59:55 +1200 Subject: Change uint8_t to char --- colour.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/colour.h b/colour.h index fc25ac9..4c66992 100644 --- a/colour.h +++ b/colour.h @@ -1,5 +1,5 @@ struct colour { - uint8_t r; - uint8_t g; - uint8_t b; + char r; + char g; + char b; }; -- cgit v1.1