diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-10-28 00:42:38 +0100 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2013-10-28 09:52:09 +1000 |
commit | 36c55722ddc06af682d7c7bdeb71ba75a3b0fb83 (patch) | |
tree | 2a68e9b62467b121d049d08ff2cd325de0361466 /demos/modules/gwin/console/main.c | |
parent | 4b76efce1d2676333606d4fd08f34ace33824312 (diff) | |
download | uGFX-36c55722ddc06af682d7c7bdeb71ba75a3b0fb83.tar.gz uGFX-36c55722ddc06af682d7c7bdeb71ba75a3b0fb83.tar.bz2 uGFX-36c55722ddc06af682d7c7bdeb71ba75a3b0fb83.zip |
updated GDISP and GWIN demos
Diffstat (limited to 'demos/modules/gwin/console/main.c')
-rw-r--r-- | demos/modules/gwin/console/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/modules/gwin/console/main.c b/demos/modules/gwin/console/main.c index 2175ce04..0efd1c99 100644 --- a/demos/modules/gwin/console/main.c +++ b/demos/modules/gwin/console/main.c @@ -41,7 +41,7 @@ int main(void) { /* Set some fonts */ font1 = gdispOpenFont("UI2"); - font2 = gdispOpenFont("UI2 Double"); + font2 = gdispOpenFont("DejaVu Sans 12"); gwinSetDefaultFont(font1); /* create the three console windows */ @@ -75,7 +75,7 @@ int main(void) { /* Output some data on the first console */ for(i = 0; i < 10; i++) { - gwinPrintf(GW1, "Hello ChibiOS/GFX!\r\n"); + gwinPrintf(GW1, "Hello uGFX!\r\n"); } /* Output some data on the second console */ |