We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27f4270 commit 7ede938Copy full SHA for 7ede938
1 file changed
screen.ts
@@ -143,7 +143,8 @@ namespace user_interface_base {
143
const chunkBuf2 = rowBuf2.slice(0, chunkSize - overhead);
144
145
const res = chunkBuf1.concat(chunkBuf2);
146
- basic.showNumber(res.length)
+ if (res > 16)
147
+ basic.showString("B")
148
return res
149
}
150
@@ -152,6 +153,8 @@ namespace user_interface_base {
152
153
const rowBuf = Buffer.create(bitmap.width);
154
bitmap.getRows(startingRow, rowBuf);
155
const res = rowBuf.slice(startIndex % width, chunkSize);
156
157
158
159
160
0 commit comments