more robust multilingual print

This commit is contained in:
minjaesong
2021-12-26 10:00:07 +09:00
parent 100690d501
commit 04d77b16dc
3 changed files with 16 additions and 16 deletions

View File

@@ -97,7 +97,7 @@ class GraphicsJSR223Delegate(val vm: VM) {
fun setCursorYX(cy: Int, cx: Int) {
getFirstGPU()?.let {
it.setCursorPos(cy - 1, cx - 1)
it.setCursorPos(cx - 1, cy - 1)
}
}