1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 00:35:18 +03:00

BMP are read on the stack to avoid a malloc. Lua memory displayed when

pressing [Menu Long]
This commit is contained in:
bsongis 2014-05-30 16:14:54 +02:00
parent 687ddd8f4d
commit 950f651af9
4 changed files with 30 additions and 23 deletions

View file

@ -803,7 +803,7 @@ void lcd_vlineStip(xcoord_t x, int8_t y, int8_t h, uint8_t pat, LcdFlags att)
void lcd_vline(xcoord_t x, int8_t y, int8_t h)
{
lcd_vlineStip(x, y, h, 0xff);
lcd_vlineStip(x, y, h, SOLID);
}
void lcd_invert_line(int8_t y)