summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/doom/d_event.h2
-rw-r--r--apps/plugins/doom/doomstat.h2
-rw-r--r--apps/plugins/doom/r_defs.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/doom/d_event.h b/apps/plugins/doom/d_event.h
index b9b42a3989..c131ed56e1 100644
--- a/apps/plugins/doom/d_event.h
+++ b/apps/plugins/doom/d_event.h
@@ -49,7 +49,7 @@ enum
49 ev_mouse, 49 ev_mouse,
50 ev_joystick 50 ev_joystick
51}; 51};
52typedef int evtype_t; 52typedef unsigned evtype_t;
53 53
54// Event structure. 54// Event structure.
55typedef struct 55typedef struct
diff --git a/apps/plugins/doom/doomstat.h b/apps/plugins/doom/doomstat.h
index a89a4e547f..089f93b356 100644
--- a/apps/plugins/doom/doomstat.h
+++ b/apps/plugins/doom/doomstat.h
@@ -59,7 +59,7 @@ enum {
59 am_follow = 8, // keep the player centred 59 am_follow = 8, // keep the player centred
60 am_grid =16, // show grid 60 am_grid =16, // show grid
61}; 61};
62typedef int automapmode_e; 62typedef unsigned automapmode_e;
63extern automapmode_e automapmode; // Mode that the automap is in 63extern automapmode_e automapmode; // Mode that the automap is in
64 64
65// ----------------------------------------------------- 65// -----------------------------------------------------
diff --git a/apps/plugins/doom/r_defs.h b/apps/plugins/doom/r_defs.h
index 251f515a07..032e37d26c 100644
--- a/apps/plugins/doom/r_defs.h
+++ b/apps/plugins/doom/r_defs.h
@@ -192,7 +192,7 @@ enum { // cph:
192 RF_BOT_TILE = 4, // Lower texture needs tiling 192 RF_BOT_TILE = 4, // Lower texture needs tiling
193 RF_IGNORE = 8, // Renderer can skip this line 193 RF_IGNORE = 8, // Renderer can skip this line
194 RF_CLOSED =16, // Line blocks view 194 RF_CLOSED =16, // Line blocks view
195}; 195}; /* r_flags */
196 196
197typedef struct line_s 197typedef struct line_s
198{ 198{
@@ -211,7 +211,7 @@ typedef struct line_s
211 int tranlump; // killough 4/11/98: translucency filter, -1 == none 211 int tranlump; // killough 4/11/98: translucency filter, -1 == none
212 int firsttag,nexttag; // killough 4/17/98: improves searches for tags. 212 int firsttag,nexttag; // killough 4/17/98: improves searches for tags.
213 int r_validcount; // cph: if == gametic, r_flags already done 213 int r_validcount; // cph: if == gametic, r_flags already done
214 int r_flags; 214 unsigned r_flags;
215} 215}
216line_t; 216line_t;
217 217