aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-11-10 10:45:28 +1000
committerinmarket <andrewh@inmarket.com.au>2018-11-10 10:45:28 +1000
commitd528fb218d2773c051098cd44cb6eb0eb0732be0 (patch)
treea0a16a4ac68bf1c78c69a163c0865c9a72a9fd4d /demos
parent8a9ed5195b3345635533b6150b9303abbaf5adf3 (diff)
downloaduGFX-d528fb218d2773c051098cd44cb6eb0eb0732be0.tar.gz
uGFX-d528fb218d2773c051098cd44cb6eb0eb0732be0.tar.bz2
uGFX-d528fb218d2773c051098cd44cb6eb0eb0732be0.zip
Minor fixups
Diffstat (limited to 'demos')
-rw-r--r--demos/3rdparty/notepad-2/main.c2
-rw-r--r--demos/modules/gwin/graph/main.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/demos/3rdparty/notepad-2/main.c b/demos/3rdparty/notepad-2/main.c
index f20d1899..817b4de6 100644
--- a/demos/3rdparty/notepad-2/main.c
+++ b/demos/3rdparty/notepad-2/main.c
@@ -2,7 +2,7 @@
* File: main.c
*
* This file is a part of the Notepad demo application for ChibiOS/GFX
- * Copyright © 2013, Kumar Abhishek [abhishek.kakkar@edaboard.com].
+ * Copyright 2013, Kumar Abhishek [abhishek.kakkar@edaboard.com].
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/demos/modules/gwin/graph/main.c b/demos/modules/gwin/graph/main.c
index 4a89dd04..2492c349 100644
--- a/demos/modules/gwin/graph/main.c
+++ b/demos/modules/gwin/graph/main.c
@@ -47,7 +47,7 @@ static GGraphStyle GraphStyle1 = {
{ GGRAPH_LINE_SOLID, 0, GFX_WHITE }, // Y axis
{ GGRAPH_LINE_DASH, 5, GFX_GRAY, 50 }, // X grid
{ GGRAPH_LINE_DOT, 7, GFX_YELLOW, 50 }, // Y grid
- GWIN_GRAPH_STYLE_POSITIVE_AXIS_ARROWS // Flags
+ GWIN_GRAPH_STYLE_POSITIVE_AXIS_ARROWS // Flags
};
// Another graph styling
@@ -58,7 +58,7 @@ static const GGraphStyle GraphStyle2 = {
{ GGRAPH_LINE_SOLID, 0, GFX_WHITE }, // Y axis
{ GGRAPH_LINE_DASH, 5, GFX_GRAY, 50 }, // X grid
{ GGRAPH_LINE_DOT, 7, GFX_YELLOW, 50 }, // Y grid
- GWIN_GRAPH_STYLE_POSITIVE_AXIS_ARROWS // Flags
+ GWIN_GRAPH_STYLE_POSITIVE_AXIS_ARROWS // Flags
};
int main(void) {