summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/m_menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/m_menu.h')
-rw-r--r--apps/plugins/doom/m_menu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/doom/m_menu.h b/apps/plugins/doom/m_menu.h
index 8444b72a5f..da360c0147 100644
--- a/apps/plugins/doom/m_menu.h
+++ b/apps/plugins/doom/m_menu.h
@@ -60,13 +60,13 @@ void M_StartControlPanel (void);
60 * The setup_group enum is used to show which 'groups' keys fall into so 60 * The setup_group enum is used to show which 'groups' keys fall into so
61 * that you can bind a key differently in each 'group'. 61 * that you can bind a key differently in each 'group'.
62 */ 62 */
63 63enum {
64typedef enum {
65 m_null, // Has no meaning; not applicable 64 m_null, // Has no meaning; not applicable
66 m_scrn, // A key can not be assigned to more than one action 65 m_scrn, // A key can not be assigned to more than one action
67 m_map, // in the same group. A key can be assigned to one 66 m_map, // in the same group. A key can be assigned to one
68 m_menu, // action in one group, and another action in another. 67 m_menu, // action in one group, and another action in another.
69} setup_group; 68};
69typedef unsigned setup_group;
70 70
71/**************************** 71/****************************
72 * 72 *