fix 48SX header

This commit is contained in:
Gwenhael Le Moine 2024-09-09 22:33:51 +02:00
parent 0a94bfc9ba
commit 91ed31e2d2
No known key found for this signature in database
GPG key ID: FDFE3669426707A7

View file

@ -531,13 +531,11 @@ static void _draw_header( void )
} else {
x = display_offset_x;
y = TOP_SKIP - DISP_FRAME - hp48sx_height - 3;
__draw_bitmap( x, y, hp48sx_width, hp48sx_height, hp48sx_bitmap, RIGHT,
0 ); // Background transparent: draw only green menu
__draw_bitmap( x, y, hp48sx_width, hp48sx_height, hp48sx_bitmap, LOGO, DISP_PAD );
x = display_offset_x + DISPLAY_WIDTH - 1 - science_width;
y = TOP_SKIP - DISP_FRAME - science_height - 4;
__draw_bitmap( x, y, science_width, science_height, science_bitmap, RIGHT,
0 ); // Background transparent: draw only green menu
__draw_bitmap( x, y, science_width, science_height, science_bitmap, LOGO, DISP_PAD );
}
}