aboutsummaryrefslogtreecommitdiffstats
path: root/demos/modules/gdisp/gdisp_text
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2013-09-18 23:38:26 +1000
committerinmarket <andrewh@inmarket.com.au>2013-09-18 23:38:26 +1000
commit6858e33285e8c8ac4dc7285dd261152eecaee060 (patch)
treef2894f4c3a442caef92460eb4c71c8e541c05ec0 /demos/modules/gdisp/gdisp_text
parent01a6d6ff95d72e6e9107d8c3e386c2bd2ce5c28d (diff)
downloaduGFX-6858e33285e8c8ac4dc7285dd261152eecaee060.tar.gz
uGFX-6858e33285e8c8ac4dc7285dd261152eecaee060.tar.bz2
uGFX-6858e33285e8c8ac4dc7285dd261152eecaee060.zip
Update demos so OS can be specified in the Makefile
Diffstat (limited to 'demos/modules/gdisp/gdisp_text')
-rw-r--r--demos/modules/gdisp/gdisp_text/main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/demos/modules/gdisp/gdisp_text/main.c b/demos/modules/gdisp/gdisp_text/main.c
index dee741fa..7ea3405e 100644
--- a/demos/modules/gdisp/gdisp_text/main.c
+++ b/demos/modules/gdisp/gdisp_text/main.c
@@ -30,7 +30,7 @@
#include "gfx.h"
int main(void) {
- coord_t width, height;
+ coord_t width;
font_t font1, font2, font3, font4;
const char *msg;
@@ -39,7 +39,6 @@ int main(void) {
// Get the screen size
width = gdispGetWidth();
- height = gdispGetHeight();
// Get the fonts we want to use
font1 = gdispOpenFont("UI2");