summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorWilliam Wilgus <me.theuser@yahoo.com>2017-11-18 17:06:40 +0100
committerWilliam Wilgus <me.theuser@yahoo.com>2017-11-18 17:06:40 +0100
commit52af55eee8566e23b190b7444e73df0106b1663d (patch)
tree4bb746acfcbb5d851a68593a6219834cd737d915 /apps
parentb10c0e5b903b0124f4996f68f2433c2b8419d753 (diff)
downloadrockbox-52af55eee8566e23b190b7444e73df0106b1663d.tar.gz
rockbox-52af55eee8566e23b190b7444e73df0106b1663d.zip
Action Rewrite - Fix red
Change-Id: Iaa3e452994295b381297c1b6c9f61407e8ba0296
Diffstat (limited to 'apps')
-rw-r--r--apps/action.c4
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