runes: fixed numbers not coming up

Former-commit-id: 845b721d289842d39ea47043154a06ff7069be77
This commit is contained in:
Song Minjae
2017-03-25 02:28:49 +09:00
parent 1e3ffd2272
commit b6290134a9
2 changed files with 3 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ class NewRunes : Font {
private val runeSize = 12
private val encPlane = IntArray(128, {
if (it < 0x10)
if (it < 0x20)
0x20 + it
else if (it < 0x30)
0x3000 + (it - 0x20)