1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-13 19:40:20 +03:00

Compile fix

This commit is contained in:
3djc 2021-04-05 19:13:11 +02:00
parent e0f65a0f05
commit 2c608ad719

View file

@ -20,11 +20,11 @@
#include "opentx.h" #include "opentx.h"
#define HAS_TOPBAR() (OPTION_VALUE_BOOL(persistentData->options[0].boolValue) == true) #define HAS_TOPBAR() (persistentData->options[0].boolValue == true)
#define HAS_FM() (OPTION_VALUE_BOOL(persistentData->options[1].boolValue) == true) #define HAS_FM() (persistentData->options[1].boolValue == true)
#define HAS_SLIDERS() (OPTION_VALUE_BOOL(persistentData->options[2].boolValue) == true) #define HAS_SLIDERS() (persistentData->options[2].boolValue == true)
#define HAS_TRIMS() (OPTION_VALUE_BOOL(persistentData->options[3].boolValue) == true) #define HAS_TRIMS() (persistentData->options[3].boolValue == true)
#define IS_MIRRORED() (OPTION_VALUE_BOOL(persistentData->options[4].boolValue) == true) #define IS_MIRRORED() (persistentData->options[4].boolValue == true)
const uint8_t LBM_LAYOUT_4P2[] = { const uint8_t LBM_LAYOUT_4P2[] = {
#include "mask_layout4+2.lbm" #include "mask_layout4+2.lbm"