Fix a typo in a comment
This commit is contained in:
parent
f1b4da67c0
commit
524dbf1b91
|
@ -384,7 +384,7 @@ int DoChar(int sx, int sy, int c){
|
||||||
};
|
};
|
||||||
|
|
||||||
#define UTF8
|
#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 UT2(a) ( ((a[0]&31)<<6) + (a[1]&63) )
|
||||||
#define UT3(a) ( ((a[0]&15)<<12) + ((a[1]&63)<<6) + (a[2]&63) )
|
#define UT3(a) ( ((a[0]&15)<<12) + ((a[1]&63)<<6) + (a[2]&63) )
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue