mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-19 03:40:59 +00:00
fix(core): fix gfx_clear
[no changelog]
This commit is contained in:
parent
bb92a6b56a
commit
171961829a
@ -91,8 +91,8 @@ static inline gfx_clip_t gfx_clip(gfx_rect_t dst, const gfx_bitmap_t* bitmap) {
|
|||||||
void gfx_clear(void) {
|
void gfx_clear(void) {
|
||||||
gfx_bitblt_t bb = {
|
gfx_bitblt_t bb = {
|
||||||
// Destination bitmap
|
// Destination bitmap
|
||||||
.height = DISPLAY_RESX,
|
.height = DISPLAY_RESY,
|
||||||
.width = DISPLAY_RESY,
|
.width = DISPLAY_RESX,
|
||||||
.dst_row = NULL,
|
.dst_row = NULL,
|
||||||
.dst_x = 0,
|
.dst_x = 0,
|
||||||
.dst_y = 0,
|
.dst_y = 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user