X11: fix Update_status_line()
it calls Update_rect() which already multiply by Pixel_width Pixel_height
This commit is contained in:
parent
617e4da310
commit
559085a614
@ -304,8 +304,8 @@ void Flush_update(void)
|
|||||||
|
|
||||||
void Update_status_line(short char_pos, short width)
|
void Update_status_line(short char_pos, short width)
|
||||||
{
|
{
|
||||||
Update_rect((18+char_pos*8)*Menu_factor_X*Pixel_width, Menu_status_Y*Pixel_height,
|
Update_rect((18+char_pos*8)*Menu_factor_X, Menu_status_Y,
|
||||||
width*8*Menu_factor_X*Pixel_width, 8*Menu_factor_Y*Pixel_height);
|
width*8*Menu_factor_X, 8*Menu_factor_Y);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Clear_border(byte color)
|
void Clear_border(byte color)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user