diff options
author | Ryan <fauxpark@gmail.com> | 2020-11-26 23:44:17 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-26 23:44:17 +1100 |
commit | 3afe0ea9b9f67ae33f54c1393b15d988764241a2 (patch) | |
tree | eb2c1527bd7ed3e4f06d8b742afab564bd8168e8 /quantum/visualizer/lcd_keyframes.c | |
parent | 1c0e8a6bb4718c693e24d87c19ccca435d2f1f58 (diff) |
ST7565 tidyup (#10907)
Diffstat (limited to 'quantum/visualizer/lcd_keyframes.c')
-rw-r--r-- | quantum/visualizer/lcd_keyframes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/visualizer/lcd_keyframes.c b/quantum/visualizer/lcd_keyframes.c index c7d9841df3..1d6f3dca18 100644 --- a/quantum/visualizer/lcd_keyframes.c +++ b/quantum/visualizer/lcd_keyframes.c @@ -157,14 +157,14 @@ bool lcd_keyframe_draw_logo(keyframe_animation_t* animation, visualizer_state_t* (void)animation; // Read the uGFX documentation for information how to use the displays // http://wiki.ugfx.org/index.php/Main_Page - gdispClear(White); + gdispClear(Black); // You can use static variables for things that can't be found in the animation // or state structs, here we use the image // gdispGBlitArea is a tricky function to use since it supports blitting part of the image // if you have full screen image, then just use LCD_WIDTH and LCD_HEIGHT for both source and target dimensions - gdispGBlitArea(GDISP, 0, 0, LCD_WIDTH, LCD_HEIGHT, 0, 0, LCD_WIDTH, (pixel_t*)resource_lcd_logo); + gdispGBlitArea(GDISP, 0, 0, 128, 32, 0, 0, LCD_WIDTH, (pixel_t*)resource_lcd_logo); return false; } |