mirror of
https://github.com/opentx/opentx.git
synced 2025-07-13 11:29:51 +03:00
Compile fix
This commit is contained in:
parent
e0f65a0f05
commit
2c608ad719
1 changed files with 5 additions and 5 deletions
|
@ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue