Skip to content
Snippets Groups Projects
Commit 531217a0 authored by Damien George's avatar Damien George
Browse files

extmod/modframebuf: Fix pixel accessor to return a 1-bit result.

parent fea7fe45
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ STATIC mp_obj_t framebuf1_pixel(size_t n_args, const mp_obj_t *args) {
int index = (y / 8) * self->stride + x;
if (n_args == 3) {
// get
return MP_OBJ_NEW_SMALL_INT(self->buf[index] >> (y & 7));
return MP_OBJ_NEW_SMALL_INT((self->buf[index] >> (y & 7)) & 1);
} else {
// set
if (mp_obj_get_int(args[3])) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment