We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d018081 commit 67f92f1Copy full SHA for 67f92f1
screen.ts
@@ -130,8 +130,8 @@ namespace user_interface_base {
130
const startingRow = (startIndex / width | 0);
131
const endingRow = (endIndex / width | 0);
132
133
- basic.showString("I")
134
- basic.showNumber(startingRow)
+ // basic.showString("I")
+ // basic.showNumber(startingRow)
135
136
// Buffer crosses multiple rows:
137
if (startingRow != endingRow) {
@@ -165,7 +165,7 @@ namespace user_interface_base {
165
// const end = start + chunkSize;
166
for (let i = 0; i < chunkSize; i++) {
167
res[i] = rowBuf[i + start];
168
- basic.showNumber(res[i])
+ // basic.showNumber(res[i])
169
}
170
return res
171
0 commit comments