2
0
Эх сурвалжийг харах

Fixed unicode fullwidth to ASCII conversion (#371)

Pascal Peridont 7 жил өмнө
parent
commit
8bc35b42c6
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      hxd/Charset.hx

+ 1 - 1
hxd/Charset.hx

@@ -43,7 +43,7 @@ class Charset {
 			map.set(a, b);
 		}
 		// fullwidth unicode to ASCII (if missing)
-		for( i in 1...0x5E )
+		for( i in 0...0x5E )
 			m(0xFF01 + i, 0x21 + i);
 		// Latin1 accents
 		for( i in "À".code..."Æ".code + 1 )