summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/wi_stuff.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/wi_stuff.c')
-rw-r--r--apps/plugins/doom/wi_stuff.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/doom/wi_stuff.c b/apps/plugins/doom/wi_stuff.c
index 3d14d088d5..5aec366026 100644
--- a/apps/plugins/doom/wi_stuff.c
+++ b/apps/plugins/doom/wi_stuff.c
@@ -107,12 +107,13 @@
107// These animation variables, structures, etc. are used for the 107// These animation variables, structures, etc. are used for the
108// DOOM/Ultimate DOOM intermission screen animations. This is 108// DOOM/Ultimate DOOM intermission screen animations. This is
109// totally different from any sprite or texture/flat animations 109// totally different from any sprite or texture/flat animations
110typedef enum 110enum
111{ 111{
112 ANIM_ALWAYS, // determined by patch entry 112 ANIM_ALWAYS, // determined by patch entry
113 ANIM_RANDOM, // occasional 113 ANIM_RANDOM, // occasional
114 ANIM_LEVEL // continuous 114 ANIM_LEVEL // continuous
115} animenum_t; 115};
116typedef unsigned animenum_t;
116 117
117typedef struct 118typedef struct
118{ 119{