summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/st_stuff.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/st_stuff.h')
-rw-r--r--apps/plugins/doom/st_stuff.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/plugins/doom/st_stuff.h b/apps/plugins/doom/st_stuff.h
index d65b01e571..24f8c82661 100644
--- a/apps/plugins/doom/st_stuff.h
+++ b/apps/plugins/doom/st_stuff.h
@@ -68,19 +68,21 @@ void ST_Start(void);
68void ST_Init(void); 68void ST_Init(void);
69 69
70// States for status bar code. 70// States for status bar code.
71typedef enum 71enum
72{ 72{
73 AutomapState, 73 AutomapState,
74 FirstPersonState 74 FirstPersonState
75} st_stateenum_t; 75};
76typedef unsigned st_stateenum_t;
76 77
77// States for the chat code. 78// States for the chat code.
78typedef enum 79enum
79{ 80{
80 StartChatState, 81 StartChatState,
81 WaitDestState, 82 WaitDestState,
82 GetChatState 83 GetChatState
83} st_chatstateenum_t; 84};
85typedef unsigned st_chatstateenum_t;
84 86
85boolean ST_Responder(event_t* ev); 87boolean ST_Responder(event_t* ev);
86 88