Skip to content

Commit

Permalink
make guac_mode a bool
Browse files Browse the repository at this point in the history
  • Loading branch information
bkleiner committed Aug 11, 2024
1 parent 0a24ed1 commit 19bb16f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/profile.h
Original file line number Diff line number Diff line change
Expand Up @@ -286,15 +286,15 @@ typedef struct {
END_STRUCT()

typedef struct {
uint8_t guac_mode;
bool guac_mode;
uint8_t callsign[36];
uint32_t elements[OSD_NUMBER_ELEMENTS];
uint32_t elements_hd[OSD_NUMBER_ELEMENTS];
} profile_osd_t;

#define OSD_MEMBERS \
START_STRUCT(profile_osd_t) \
MEMBER(guac_mode, uint8_t) \
MEMBER(guac_mode, bool) \
TSTR_MEMBER(callsign, 36) \
ARRAY_MEMBER(elements, OSD_NUMBER_ELEMENTS, uint32_t) \
ARRAY_MEMBER(elements_hd, OSD_NUMBER_ELEMENTS, uint32_t) \
Expand Down

0 comments on commit 19bb16f

Please sign in to comment.