summaryrefslogtreecommitdiff
path: root/firmware/export/lcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r--firmware/export/lcd.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index a8253db656..ddfba2a8ac 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -26,12 +26,15 @@
26#include "cpu.h" 26#include "cpu.h"
27#include "config.h" 27#include "config.h"
28 28
29#define VP_IS_RTL 0x01
30
29struct viewport { 31struct viewport {
30 int x; 32 int x;
31 int y; 33 int y;
32 int width; 34 int width;
33 int height; 35 int height;
34#ifdef HAVE_LCD_BITMAP 36#ifdef HAVE_LCD_BITMAP
37 int flags;
35 int font; 38 int font;
36 int drawmode; 39 int drawmode;
37#endif 40#endif