summaryrefslogtreecommitdiff
path: root/apps/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/action.c')
-rw-r--r--apps/action.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/action.c b/apps/action.c
index 31770cdb4e..80053e7646 100644
--- a/apps/action.c
+++ b/apps/action.c
@@ -131,7 +131,7 @@ static int get_action_worker(int context, int timeout,
131 { 131 {
132 last_button = BUTTON_NONE; 132 last_button = BUTTON_NONE;
133 keys_locked = false; 133 keys_locked = false;
134 gui_syncsplash(HZ/2, true, str(LANG_KEYLOCK_OFF_PLAYER)); 134 gui_syncsplash(HZ/2, str(LANG_KEYLOCK_OFF_PLAYER));
135 return ACTION_REDRAW; 135 return ACTION_REDRAW;
136 } 136 }
137 else 137 else
@@ -140,7 +140,7 @@ static int get_action_worker(int context, int timeout,
140#endif 140#endif
141 { 141 {
142 if ((button&BUTTON_REL)) 142 if ((button&BUTTON_REL))
143 gui_syncsplash(HZ/2, true, str(LANG_KEYLOCK_ON_PLAYER)); 143 gui_syncsplash(HZ/2, str(LANG_KEYLOCK_ON_PLAYER));
144 return ACTION_REDRAW; 144 return ACTION_REDRAW;
145 } 145 }
146 } 146 }
@@ -180,7 +180,7 @@ static int get_action_worker(int context, int timeout,
180 unlock_combo = button; 180 unlock_combo = button;
181 keys_locked = true; 181 keys_locked = true;
182 action_signalscreenchange(); 182 action_signalscreenchange();
183 gui_syncsplash(HZ/2, true, str(LANG_KEYLOCK_ON_PLAYER)); 183 gui_syncsplash(HZ/2, str(LANG_KEYLOCK_ON_PLAYER));
184 184
185 button_clear_queue(); 185 button_clear_queue();
186 return ACTION_REDRAW; 186 return ACTION_REDRAW;