diff options
author | Thomas Sterren <thomas.sterren@simulton.com> | 2018-02-20 16:35:34 +0100 |
---|---|---|
committer | Thomas Sterren <thomas.sterren@simulton.com> | 2018-03-06 09:56:18 +0100 |
commit | bee02d5bb58800104a6dd7490ec2424dacecf625 (patch) | |
tree | 89cb98881ef3409fa562e3dc8222f27c582a764e /src | |
parent | 509b4113ad340bf721ce58e645d1498a65cdad65 (diff) | |
download | uGFX-bee02d5bb58800104a6dd7490ec2424dacecf625.tar.gz uGFX-bee02d5bb58800104a6dd7490ec2424dacecf625.tar.bz2 uGFX-bee02d5bb58800104a6dd7490ec2424dacecf625.zip |
C comment style
Diffstat (limited to 'src')
-rw-r--r-- | src/gdisp/mcufont/mf_wordwrap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gdisp/mcufont/mf_wordwrap.c b/src/gdisp/mcufont/mf_wordwrap.c index a1df041f..de684ca1 100644 --- a/src/gdisp/mcufont/mf_wordwrap.c +++ b/src/gdisp/mcufont/mf_wordwrap.c @@ -179,7 +179,7 @@ void mf_wordwrap(const struct mf_font_s *font, int16_t width, struct linelen_s current = { 0 }; struct linelen_s previous = { 0 }; bool full; - uint32_t giveUp = 2048; // Do while-loop a maximum of x times + uint32_t giveUp = 2048; /* Do while-loop a maximum of x times */ current.start = text; |