summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/onplay.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index 0959cdf514..27a3196e16 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -1215,11 +1215,11 @@ enum hotkey_action {
1215}; 1215};
1216 1216
1217struct hotkey_assignment { 1217struct hotkey_assignment {
1218 int item; /* Bit or'd hotkey_action and HOTKEY_CTX_x */ 1218 int item; /* Bit or'd hotkey_action and HOTKEY_CTX_x */
1219 struct menu_func func; /* Function to run if this entry is selcted */ 1219 struct menu_func func; /* Function to run if this entry is selected */
1220 int return_code; /* What to return afer the function is run */ 1220 int return_code; /* What to return after the function is run */
1221 const struct menu_item_ex *menu_addr; 1221 const struct menu_item_ex *menu_addr;
1222 int lang_id; /* How to present the item to the user */ 1222 int lang_id; /* How to present the item to the user */
1223}; 1223};
1224 1224
1225#define HOTKEY_FUNC(func, param) {{(void *)func}, param} 1225#define HOTKEY_FUNC(func, param) {{(void *)func}, param}