summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/r_defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/r_defs.h')
-rw-r--r--apps/plugins/doom/r_defs.h4
1 files changed, 2 insertions, 2 deletions
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