Skip to content

Commit cce85fa

Browse files
committed
fix bitmap depth
.. as noted by @jerryneedell
1 parent efc2bd9 commit cce85fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/ov7670_displayio_pico_st7789_2in.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
if cam.height > height:
7979
continue
8080
try:
81-
bitmap = Bitmap(cam.width, cam.height, 65535)
81+
bitmap = Bitmap(cam.width, cam.height, 65536)
8282
break
8383
except MemoryError:
8484
continue

0 commit comments

Comments
 (0)