summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/p_saveg.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/p_saveg.c')
-rw-r--r--apps/plugins/doom/p_saveg.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/plugins/doom/p_saveg.c b/apps/plugins/doom/p_saveg.c
index 1b73593879..a704bfa83c 100644
--- a/apps/plugins/doom/p_saveg.c
+++ b/apps/plugins/doom/p_saveg.c
@@ -248,10 +248,11 @@ void P_UnArchiveWorld (void)
248// Thinkers 248// Thinkers
249// 249//
250 250
251typedef enum { 251enum {
252 tc_end, 252 tc_end,
253 tc_mobj 253 tc_mobj
254} thinkerclass_t; 254};
255typedef unsigned thinkerclass_t;
255 256
256// phares 9/13/98: Moved this code outside of P_ArchiveThinkers so the 257// phares 9/13/98: Moved this code outside of P_ArchiveThinkers so the
257// thinker indices could be used by the code that saves sector info. 258// thinker indices could be used by the code that saves sector info.
@@ -527,7 +528,8 @@ enum {
527 tc_pusher, // phares 3/22/98: new push/pull effect thinker 528 tc_pusher, // phares 3/22/98: new push/pull effect thinker
528 tc_flicker, // killough 10/4/98 529 tc_flicker, // killough 10/4/98
529 tc_endspecials 530 tc_endspecials
530} specials_e; 531};
532unsigned specials_e;
531 533
532// 534//
533// Things to handle: 535// Things to handle: