summaryrefslogtreecommitdiff
path: root/apps/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/misc.c')
-rw-r--r--apps/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/misc.c b/apps/misc.c
index 78ee154c56..ca99a1d9ac 100644
--- a/apps/misc.c
+++ b/apps/misc.c
@@ -887,13 +887,13 @@ void keyclick_set_callback(keyclick_callback cb, void* data)
887} 887}
888 888
889/* Produce keyclick based upon button and global settings */ 889/* Produce keyclick based upon button and global settings */
890void keyclick_click(int context, int action) 890void keyclick_click(bool rawbutton, int action)
891{ 891{
892 int button = action; 892 int button = action;
893 static long last_button = BUTTON_NONE; 893 static long last_button = BUTTON_NONE;
894 bool do_beep = false; 894 bool do_beep = false;
895 895
896 if (!(context & CONTEXT_RAWBUTTON)) 896 if (!rawbutton)
897 get_action_statuscode(&button); 897 get_action_statuscode(&button);
898 898
899 /* Settings filters */ 899 /* Settings filters */