Skip to content

Commit 67f92f1

Browse files
committed
screen.ts getBuffer removing print outs
1 parent d018081 commit 67f92f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

screen.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ namespace user_interface_base {
130130
const startingRow = (startIndex / width | 0);
131131
const endingRow = (endIndex / width | 0);
132132

133-
basic.showString("I")
134-
basic.showNumber(startingRow)
133+
// basic.showString("I")
134+
// basic.showNumber(startingRow)
135135

136136
// Buffer crosses multiple rows:
137137
if (startingRow != endingRow) {
@@ -165,7 +165,7 @@ namespace user_interface_base {
165165
// const end = start + chunkSize;
166166
for (let i = 0; i < chunkSize; i++) {
167167
res[i] = rowBuf[i + start];
168-
basic.showNumber(res[i])
168+
// basic.showNumber(res[i])
169169
}
170170
return res
171171
}

0 commit comments

Comments
 (0)