summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/r_defs.h
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2010-05-29 08:28:29 +0000
committerMichael Sevakis <jethead71@rockbox.org>2010-05-29 08:28:29 +0000
commit602bad427a0f9edbbc665033cc3ce8d1883323c9 (patch)
tree9882115137e98a59b6d33aed1f984196d58b7246 /apps/plugins/doom/r_defs.h
parent9c6e217f29bb0a76ec153574a3d493b020e5fb60 (diff)
downloadrockbox-602bad427a0f9edbbc665033cc3ce8d1883323c9.tar.gz
rockbox-602bad427a0f9edbbc665033cc3ce8d1883323c9.zip
Doom plugin: Missed properly making a few 'unsigned' on my second pass.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26369 a1c6a512-1295-4272-9138-f99709370657
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