View Single Post
Old 07-30-2018, 07:45 PM   #15
PoP
 curly᷂͓̫̙᷊̥̮̾ͯͤͭͬͦͨ ʎʌɹnɔ
PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.
 
PoP's Avatar
 
Posts: 3,018
Karma: 50506927
Join Date: Dec 2010
Location: ♁ ᴺ₄₅°₃₀' ᵂ₇₃°₃₇' ±₆₀"
Device: K3₃.₄.₃ PW3&4₅.₁₃.₃
I was trying to zoom a single "X" character on a K3:

Code:
#!/bin/sh
#
#Zoom
i=1
while [ "$i" -le "45" ]; do
  fbink -cmp -S $i "X"
  /mnt/us/screenshot.sh
  usleep 1000000
  i=$(($i + 1))
done
It started all right from S 1 to S 36:
S 1 Click image for larger version

Name:	20180730191301.png
Views:	1049
Size:	434 Bytes
ID:	165308 S 2Click image for larger version

Name:	20180730191302.png
Views:	1072
Size:	434 Bytes
ID:	165309 S 3 Click image for larger version

Name:	20180730191303.png
Views:	1017
Size:	462 Bytes
ID:	165310 ... to S 36 Click image for larger version

Name:	20180730191350.png
Views:	1215
Size:	877 Bytes
ID:	165311

But from S 37 to S 45 doubled "X" appeared:
S 37 Click image for larger version

Name:	20180730191351.png
Views:	1067
Size:	1.3 KB
ID:	165312 ... to S 45 Click image for larger version

Name:	20180730191403.png
Views:	1039
Size:	1.5 KB
ID:	165313

Any idea what's wrong?
PoP is offline   Reply With Quote