keyevent reading moved to the tvdos itself

This commit is contained in:
minjaesong
2021-09-24 11:30:55 +09:00
parent 96e23d9019
commit 012bc44845
10 changed files with 632 additions and 70 deletions

View File

@@ -39,7 +39,7 @@ let bulletinShown = false;
let cursoringCol = 0;
// load existing file if it's there
let editingExistingFile = filesystem.open(driveLetter, filePath, "R");
let editingExistingFile = (0 == filesystem.open(driveLetter, filePath, "R"));
if (editingExistingFile) {
textbuffer = filesystem.readAll(driveLetter).split("\n");
}