Merge pull request #7546 from FoamyGuy/is31fl3741_fix
fix for native is31fl3741
This commit is contained in:
commit
5f43a63a70
@ -172,7 +172,7 @@ void common_hal_is31fl3741_FrameBuffer_refresh(is31fl3741_FrameBuffer_obj_t *sel
|
|||||||
} else {
|
} else {
|
||||||
color = (rsum << 16) + (gsum << 8) + bsum;
|
color = (rsum << 16) + (gsum << 8) + bsum;
|
||||||
}
|
}
|
||||||
common_hal_is31fl3741_draw_pixel(self->is31fl3741, x, y, color, self->mapping, self->height);
|
common_hal_is31fl3741_draw_pixel(self->is31fl3741, x, y, color, self->mapping, self->scale_height);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -193,7 +193,7 @@ void common_hal_is31fl3741_FrameBuffer_refresh(is31fl3741_FrameBuffer_obj_t *sel
|
|||||||
color = *buffer;
|
color = *buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
common_hal_is31fl3741_draw_pixel(self->is31fl3741, x, y, color, self->mapping, self->height);
|
common_hal_is31fl3741_draw_pixel(self->is31fl3741, x, y, color, self->mapping, self->scale_height);
|
||||||
buffer++;
|
buffer++;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user