From 524dbf1b911801f23da0d431f99b0ce93e906615 Mon Sep 17 00:00:00 2001 From: Stefan `Sec` Zehl Date: Wed, 18 Apr 2012 00:47:37 +0200 Subject: [PATCH] Fix a typo in a comment --- firmware/lcd/render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/lcd/render.c b/firmware/lcd/render.c index 37f0110..24bd604 100644 --- a/firmware/lcd/render.c +++ b/firmware/lcd/render.c @@ -384,7 +384,7 @@ int DoChar(int sx, int sy, int c){ }; #define UTF8 -// decode 2 and 4-byte utf-8 strings. +// decode 2 and 3-byte utf-8 strings. #define UT2(a) ( ((a[0]&31)<<6) + (a[1]&63) ) #define UT3(a) ( ((a[0]&15)<<12) + ((a[1]&63)<<6) + (a[2]&63) )