diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-10-05 09:12:57 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-10-05 09:12:57 +0200 |
commit | ec637ad2df8bc938813ece64496f0965743fabfc (patch) | |
tree | 576ff32fc989b9c85d0c324148a21712002d92a0 /demos/notepad | |
parent | d6b17a157392b40a1131fe70d798ad3eaab6378f (diff) | |
download | uGFX-ec637ad2df8bc938813ece64496f0965743fabfc.tar.gz uGFX-ec637ad2df8bc938813ece64496f0965743fabfc.tar.bz2 uGFX-ec637ad2df8bc938813ece64496f0965743fabfc.zip |
Revert "rename of orientation"
This reverts commit d6b17a157392b40a1131fe70d798ad3eaab6378f.
Diffstat (limited to 'demos/notepad')
-rw-r--r-- | demos/notepad/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/notepad/main.c b/demos/notepad/main.c index 40071719..65247b09 100644 --- a/demos/notepad/main.c +++ b/demos/notepad/main.c @@ -36,7 +36,7 @@ void drawScreen(void) { uint16_t colorsize = COLOR_SIZE;
uint16_t pensize = PEN_SIZE;
- gdispSetOrientation(GDISP_ROTATE_90);
+ gdispSetOrientation(landscape);
gdispClear(White);
gdispDrawString(gdispGetWidth()-gdispGetStringWidth(msg, &fontUI2Double)-3, 3, msg, &fontUI2Double, Black);
|