Fix on fonts, fixed special char printing (>=0x80) on Term, essentially changing encoding from UTF-8 to ISO-8859-1

Former-commit-id: 78d4423e896301aebdec2f27893bb2aefaf4aada
Former-commit-id: e317df0eca8da1598159648bc44c30b86663d8a5
This commit is contained in:
Song Minjae
2016-09-19 00:31:36 +09:00
parent 90ecda108d
commit 0dabe3971c
40 changed files with 64 additions and 34 deletions

View File

@@ -28,7 +28,7 @@ class TinyAlphNum : Font {
private val mappingTable = HashMap<Int, Int>()*/
init {
fontSheet = SpriteSheet("./assets/graphics/fonts/cp949.png", W, H)
fontSheet = SpriteSheet("./assets/graphics/fonts/milky.png", W, H)
//chars.forEachIndexed { i, c -> mappingTable[c.toInt()] = i }
}