summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/m_random.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/m_random.h')
-rw-r--r--apps/plugins/doom/m_random.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/doom/m_random.h b/apps/plugins/doom/m_random.h
index 67c1a3ba4b..b99dd1793c 100644
--- a/apps/plugins/doom/m_random.h
+++ b/apps/plugins/doom/m_random.h
@@ -57,7 +57,7 @@
57// indicated by the #'s, because they're critical for preserving demo 57// indicated by the #'s, because they're critical for preserving demo
58// sync. Do not remove entries simply because they become unused later. 58// sync. Do not remove entries simply because they become unused later.
59 59
60typedef enum { 60enum {
61 pr_skullfly, // #1 61 pr_skullfly, // #1
62 pr_damage, // #2 62 pr_damage, // #2
63 pr_crush, // #3 63 pr_crush, // #3
@@ -124,7 +124,8 @@ typedef enum {
124 124
125 // End of new entries 125 // End of new entries
126 NUMPRCLASS // MUST be last item in list 126 NUMPRCLASS // MUST be last item in list
127} pr_class_t; 127};
128typedef unsigned pr_class_t;
128 129
129// The random number generator's state. 130// The random number generator's state.
130typedef struct { 131typedef struct {