diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-11-13 23:48:21 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-11-13 23:48:21 +0100 |
commit | 81f6af7e453b4ac86264dd5197e185d0d4ed0d22 (patch) | |
tree | 7eb7d101828085027a2ccb69a26d99a357dd0e52 /include | |
parent | 6d18ad18c3c4fd091e7a733b8a68f2014ccf91cc (diff) | |
download | uGFX-81f6af7e453b4ac86264dd5197e185d0d4ed0d22.tar.gz uGFX-81f6af7e453b4ac86264dd5197e185d0d4ed0d22.tar.bz2 uGFX-81f6af7e453b4ac86264dd5197e185d0d4ed0d22.zip |
backlight and contrast value changed to uint8_t
Diffstat (limited to 'include')
-rw-r--r-- | include/gdisp_emulation.c | 4 |
1 files 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 */
|