typewriter: latin alph capitals

This commit is contained in:
minjaesong
2021-11-06 17:28:49 +09:00
parent d89409cc73
commit c325c9c30c
4 changed files with 1 additions and 1 deletions

View File

@@ -89,7 +89,7 @@ class TypewriterGDX(val width: Int, val height: Int) : Game() {
try {
textbuf.forEachIndexed { index, s ->
font.draw(batch, s, 40f, 40f + 32 * index)
font.draw(batch, s, 40f, 40f + 24 * index)
}
}
catch (e: ConcurrentModificationException) {}