- replaced CARRYFACTOR definition by an integer-only expression.

SVN r3534 (trunk)
This commit is contained in:
Christoph Oelckers 2012-04-07 15:32:32 +00:00
parent 26dbec2aae
commit 7443c3d167
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ private:
// Factor to scale scrolling effect into mobj-carrying properties = 3/32.
// (This is so scrolling floors and objects on them can move at same speed.)
enum { CARRYFACTOR = ((fixed_t)(FRACUNIT*.09375)) };
enum { CARRYFACTOR = (3*FRACUNIT >> 5) };
// phares 3/20/98: added new model of Pushers for push/pull effects