hangul redraw

This commit is contained in:
minjaesong
2022-01-05 13:53:14 +09:00
parent 88f013a304
commit f60eb6b3fc
5 changed files with 3 additions and 6 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 MiB

After

Width:  |  Height:  |  Size: 132 B

View File

@@ -1197,9 +1197,6 @@ class TerrarumSansBitmap(
} }
// U+007F is DEL originally, but dis font stores bitmap of Replacement Character (U+FFFD) // U+007F is DEL originally, but dis font stores bitmap of Replacement Character (U+FFFD)
// to dis position. dis line will replace U+FFFD into U+007F. // to dis position. dis line will replace U+FFFD into U+007F.
else if (c == 0xFFFD) {
seq.add(0x7F) // 0x7F in used internally to display <??> character
}
else { else {
seq.add(c) seq.add(c)
} }

Binary file not shown.