diff options
author | William Wilgus <me.theuser@yahoo.com> | 2017-11-18 17:06:40 +0100 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2017-11-18 17:06:40 +0100 |
commit | 52af55eee8566e23b190b7444e73df0106b1663d (patch) | |
tree | 4bb746acfcbb5d851a68593a6219834cd737d915 | |
parent | b10c0e5b903b0124f4996f68f2433c2b8419d753 (diff) |
Action Rewrite - Fix red
Change-Id: Iaa3e452994295b381297c1b6c9f61407e8ba0296
-rw-r--r-- | apps/action.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/action.c b/apps/action.c index ded36048ba..9b559cc0c2 100644 --- a/apps/action.c +++ b/apps/action.c @@ -459,7 +459,7 @@ static inline void button_flip_horizontally(int context, int *button) #endif #if defined(BUTTON_MINUS) && defined(BUTTON_PLUS) - newbutton &= ~(BUTTON_MINUS | BUTTON_PLUS) + newbutton &= ~(BUTTON_MINUS | BUTTON_PLUS); if (has_flag(*button, BUTTON_MINUS)) { newbutton |= BUTTON_PLUS; @@ -587,7 +587,7 @@ static inline void action_code_lookup(action_last_t *last, action_cur_t *cur) #if (BUTTON_REMOTE != 0) if (has_flag(cur->button, BUTTON_REMOTE)) { - *context |= CONTEXT_REMOTE; + context |= CONTEXT_REMOTE; } #endif |