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 0959cdf..27a3196 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -1215,11 +1215,11 @@ enum hotkey_action {
};
struct hotkey_assignment {
- int item; /* Bit or'd hotkey_action and HOTKEY_CTX_x */
- struct menu_func func; /* Function to run if this entry is selcted */
- int return_code; /* What to return afer the function is run */
+ int item; /* Bit or'd hotkey_action and HOTKEY_CTX_x */
+ struct menu_func func; /* Function to run if this entry is selected */
+ int return_code; /* What to return after the function is run */
const struct menu_item_ex *menu_addr;
- int lang_id; /* How to present the item to the user */
+ int lang_id; /* How to present the item to the user */
};
#define HOTKEY_FUNC(func, param) {{(void *)func}, param}