tvdos app package wip

This commit is contained in:
minjaesong
2023-05-06 19:06:43 +09:00
parent fe6f247a76
commit 831485bc35
3 changed files with 799 additions and 1 deletions

View File

@@ -51,7 +51,7 @@ class PmemFSfile {
// Javascript array OR JVM byte[]
else if (Array.isArray(bytes) || bytes.toString().startsWith("[B")) {
this.data = ""
for (let i = 0; i < array.length; i++) {
for (let i = 0; i < bytes.length; i++) {
this.data += String.fromCharCode(bytes[i])
}
}