Fix a typo in a comment

This commit is contained in:
Stefan `Sec` Zehl 2012-04-18 00:47:37 +02:00
parent f1b4da67c0
commit 524dbf1b91
1 changed files with 1 additions and 1 deletions

View File

@ -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) )