ui/c: workaround clang-format's pointer alignment in a define
it is actually multiplication, not a pointer. reads nicer this way.pull/20/head
parent
6a93ba9a30
commit
2ecd44a7db
src/ui/c
|
@ -6,7 +6,7 @@
|
|||
#include "lv_drivers/indev/evdev.h"
|
||||
#include "lvgl/lvgl.h"
|
||||
|
||||
#define DISP_BUF_SIZE NM_DISP_HOR *NM_DISP_VER / 10
|
||||
#define DISP_BUF_SIZE (NM_DISP_HOR * NM_DISP_VER / 10)
|
||||
|
||||
lv_disp_t *drv_init(void)
|
||||
{
|
||||
|
|
Reference in New Issue