mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- replaced CARRYFACTOR definition by an integer-only expression.
SVN r3534 (trunk)
This commit is contained in:
parent
26dbec2aae
commit
7443c3d167
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue