From 81f6af7e453b4ac86264dd5197e185d0d4ed0d22 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Tue, 13 Nov 2012 23:48:21 +0100 Subject: [PATCH] backlight and contrast value changed to uint8_t --- include/gdisp_emulation.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/gdisp_emulation.c b/include/gdisp_emulation.c index 2c3f7caf..31ca1a03 100644 --- a/include/gdisp_emulation.c +++ b/include/gdisp_emulation.c @@ -39,8 +39,8 @@ coord_t Height; gdisp_orientation_t Orientation; gdisp_powermode_t Powermode; - coord_t Backlight; - coord_t Contrast; + uint8_t Backlight; + uint8_t Contrast; #if GDISP_NEED_CLIP || GDISP_NEED_VALIDATION coord_t clipx0, clipy0; coord_t clipx1, clipy1; /* not inclusive */