From 788892b95805a7d54e2b8ed92ed8262a7b9c6d47 Mon Sep 17 00:00:00 2001 From: James Haley Date: Wed, 29 Jun 2011 14:28:43 +0000 Subject: Added support for -work and -flip command-line parameters. -random cannot be supported yet because it requires addition to the list of transmitted variables during network game initialization (TODO!) Subversion-branch: /branches/strife-branch Subversion-revision: 2351 --- src/strife/r_things.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/strife/r_things.c') 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; -- cgit v1.2.3