diff options
author | Tectu <joel@unormal.org> | 2012-08-22 10:05:38 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-08-22 10:05:38 +0200 |
commit | 7021da1b9e5306db27f8b7c86d75c82652dfb8c0 (patch) | |
tree | b89c6ea0756981cb44b190f742a84c0270500bae | |
parent | 4238378e9029d1ef26e48b7ec742467f7df4b7d7 (diff) | |
download | uGFX-7021da1b9e5306db27f8b7c86d75c82652dfb8c0.tar.gz uGFX-7021da1b9e5306db27f8b7c86d75c82652dfb8c0.tar.bz2 uGFX-7021da1b9e5306db27f8b7c86d75c82652dfb8c0.zip |
gdispSetOrientation() bugfix (by inmarket)
-rw-r--r-- | include/gdisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gdisp.h b/include/gdisp.h index b5a59cf9..61f851cc 100644 --- a/include/gdisp.h +++ b/include/gdisp.h @@ -245,7 +245,7 @@ void gdispDrawBox(coord_t x, coord_t y, coord_t cx, coord_t cy, color_t color); /* Macro definitions for common gets and sets */
#define gdispSetPowerMode(powerMode) gdispControl(GDISP_CONTROL_POWER, (void *)(unsigned)(powerMode))
-#define gdispSetOrientation(newOrientation) gdispControl(GDISP_CONTROL_ORITENTATION, (void *)(unsigned)(newOrientation))
+#define gdispSetOrientation(newOrientation) gdispControl(GDISP_CONTROL_ORIENTATION, (void *)(unsigned)(newOrientation))
#define gdispSetBacklight(percent) gdispControl(GDISP_CONTROL_BACKLIGHT, (void *)(unsigned)(percent))
#define gdispSetContrast(percent) gdispControl(GDISP_CONTROL_CONTRAST, (void *)(unsigned)(percent))
|