summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/export/lcd.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index c8eaf1545c..ffaf1a63d2 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -27,7 +27,6 @@
27#include "cpu.h" 27#include "cpu.h"
28#include "config.h" 28#include "config.h"
29#include "events.h" 29#include "events.h"
30#include "system.h"
31 30
32 31
33/* Frame buffer stride 32/* Frame buffer stride
@@ -166,9 +165,9 @@ struct frame_buffer_t {
166 fb_remote_data *fb_remote_ptr; 165 fb_remote_data *fb_remote_ptr;
167#endif 166#endif
168 }; 167 };
168 void *(*get_address_fn)(int x, int y);
169 ptrdiff_t stride; 169 ptrdiff_t stride;
170 size_t elems; 170 size_t elems;
171 void *(*get_address_fn)(int x, int y) MEM_ALIGN_ATTR;
172}; 171};
173 172
174#define VP_FLAG_ALIGN_RIGHT 0x01 173#define VP_FLAG_ALIGN_RIGHT 0x01