summaryrefslogtreecommitdiff
path: root/src/strife/r_things.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strife/r_things.c')
-rw-r--r--src/strife/r_things.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/strife/r_things.c b/src/strife/r_things.c
index a4a5595d..f83375e8 100644
--- a/src/strife/r_things.c
+++ b/src/strife/r_things.c
@@ -725,7 +725,9 @@ void R_DrawPSprite (pspdef_t* psp)
sprframe = &sprdef->spriteframes[ psp->state->frame & FF_FRAMEMASK ];
lump = sprframe->lump[0];
- flip = (boolean)sprframe->flip[0];
+ // [STRIFE] haleyjd 20110629: -flip replaces this.
+ //flip = (boolean)sprframe->flip[0];
+ flip = flipparm;
// calculate edges of the shape
tx = psp->sx-160*FRACUNIT;